Returns a specific collaboration whitelist entry.
213123
The ID of the collaboration whitelist item
Returns a collaboration whitelist entry.
An unexpected client error.
curl -X GET https://api.box.com/2.0/collaboration_whitelist_entries/213123 \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
string entryID = "11111";
BoxCollaborationWhitelistEntry entry = await client.CollaborationWhitelistManager.GetCollaborationWhitelistEntryAsync(
entryID
);
BoxCollaborationWhitelist domainWhitelist = new BoxCollaborationWhitelist(api, "id");
domainWhitelist.getInfo();
whitelist_entry = client.collaboration_whitelist_entry(entry_id='11111').get()
client.collaborationWhitelist.getWhitelistedDomain('12345', {}, callback);