Returns a list of users who have been exempt from the collaboration domain restrictions.
This operation is performed by calling function getCollaborationWhitelistExemptTargets.
See the endpoint docs at API Reference.
await client.collaborationAllowlistExemptTargets.getCollaborationWhitelistExemptTargets();
GetCollaborationWhitelistExemptTargetsQueryParams
GetCollaborationWhitelistExemptTargetsHeadersInput
undefined | CancellationToken
This function returns a value of type CollaborationAllowlistExemptTargets.
Returns a collection of user exemptions.
Exempts a user from the restrictions set out by the allowed list of domains for collaborations.
This operation is performed by calling function createCollaborationWhitelistExemptTarget.
See the endpoint docs at API Reference.
await client.collaborationAllowlistExemptTargets.createCollaborationWhitelistExemptTarget(
{
user: {
id: user.id,
} satisfies CreateCollaborationWhitelistExemptTargetRequestBodyUserField,
} satisfies CreateCollaborationWhitelistExemptTargetRequestBody,
);
CreateCollaborationWhitelistExemptTargetRequestBody
CreateCollaborationWhitelistExemptTargetOptionalsInputThis function returns a value of type CollaborationAllowlistExemptTarget.
Returns a new exemption entry.
Returns a users who has been exempt from the collaboration domain restrictions.
This operation is performed by calling function getCollaborationWhitelistExemptTargetById.
See the endpoint docs at API Reference.
await client.collaborationAllowlistExemptTargets.getCollaborationWhitelistExemptTargetById(
newExemptTarget.id!,
);
string
GetCollaborationWhitelistExemptTargetByIdOptionalsInputThis function returns a value of type CollaborationAllowlistExemptTarget.
Returns the user’s exempted from the list of collaboration domains.
Removes a user’s exemption from the restrictions set out by the allowed list of domains for collaborations.
This operation is performed by calling function deleteCollaborationWhitelistExemptTargetById.
See the endpoint docs at API Reference.
await client.collaborationAllowlistExemptTargets.deleteCollaborationWhitelistExemptTargetById(
exemptTarget.id!,
);
string
DeleteCollaborationWhitelistExemptTargetByIdOptionalsInputThis function returns a value of type undefined.
A blank response is returned if the exemption was successfully deleted.