Returns the list domains that have been deemed safe to create collaborations for within the current enterprise.
This operation is performed by calling function getCollaborationWhitelistEntries.
See the endpoint docs at API Reference.
await client.collaborationAllowlistEntries.getCollaborationWhitelistEntries();
GetCollaborationWhitelistEntriesQueryParams
GetCollaborationWhitelistEntriesHeadersInput
undefined | CancellationToken
This function returns a value of type CollaborationAllowlistEntries.
Returns a collection of domains that are allowed for collaboration.
Creates a new entry in the list of allowed domains to allow collaboration for.
This operation is performed by calling function createCollaborationWhitelistEntry.
See the endpoint docs at API Reference.
await client.collaborationAllowlistEntries.createCollaborationWhitelistEntry({
direction:
'inbound' as CreateCollaborationWhitelistEntryRequestBodyDirectionField,
domain: domain,
} satisfies CreateCollaborationWhitelistEntryRequestBody);
CreateCollaborationWhitelistEntryRequestBody
CreateCollaborationWhitelistEntryOptionalsInputThis function returns a value of type CollaborationAllowlistEntry.
Returns a new entry on the list of allowed domains.
Returns a domain that has been deemed safe to create collaborations for within the current enterprise.
This operation is performed by calling function getCollaborationWhitelistEntryById.
See the endpoint docs at API Reference.
await client.collaborationAllowlistEntries.getCollaborationWhitelistEntryById(
newEntry.id!,
);
string
GetCollaborationWhitelistEntryByIdOptionalsInputThis function returns a value of type CollaborationAllowlistEntry.
Returns an entry on the list of allowed domains.
Removes a domain from the list of domains that have been deemed safe to create collaborations for within the current enterprise.
This operation is performed by calling function deleteCollaborationWhitelistEntryById.
See the endpoint docs at API Reference.
await client.collaborationAllowlistEntries.deleteCollaborationWhitelistEntryById(
entry.id!,
);
string
DeleteCollaborationWhitelistEntryByIdOptionalsInputThis function returns a value of type undefined.
A blank response is returned if the entry was successfully deleted.