Remove collaboration whitelist entry

delete
https://api.box.com/2.0
/collaboration_whitelist_entries/:collaboration_whitelist_entry_id

Deletes a specific collaboration whitelist entry.

Request

application/json

Path Parameters

stringin pathrequired
213123

The ID of the collaboration whitelist item

Response

none

A blank response is returned if the entry was successfully deleted.

application/jsonClient error

An unexpected client error.

delete
Remove collaboration whitelist entry
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -X DELETE https://api.box.com/2.0/collaboration_whitelist_entries/213123 \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
.NET
string entryID = "11111";
await client.CollaborationWhitelistManager.DeleteCollaborationWhitelistEntryAsync(entryID);
Java
BoxCollaborationWhitelist domainToBeDeleted = new BoxCollaborationWhitelist(api, "whitelist-id");
domainToBeDeleted.delete();
Python
client.collaboration_whitelist_entry(entry_id='11111').delete()
Node
client.collaborationWhitelist.removeDomain('12345', callback);