- List users exempt from collaboration domain restrictions
- Create user exemption from collaboration domain restrictions
- Get user exempt from collaboration domain restrictions
- Remove user from list of users exempt from domain restrictions
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.
client.getCollaborationAllowlistExemptTargets().getCollaborationWhitelistExemptTargets()
- queryParams
GetCollaborationWhitelistExemptTargetsQueryParams
- Query parameters of getCollaborationWhitelistExemptTargets method
- headers
GetCollaborationWhitelistExemptTargetsHeaders
- Headers of getCollaborationWhitelistExemptTargets method
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.
client.getCollaborationAllowlistExemptTargets().createCollaborationWhitelistExemptTarget(new CreateCollaborationWhitelistExemptTargetRequestBody(new CreateCollaborationWhitelistExemptTargetRequestBodyUserField(user.getId())))
- requestBody
CreateCollaborationWhitelistExemptTargetRequestBody
- Request body of createCollaborationWhitelistExemptTarget method
- headers
CreateCollaborationWhitelistExemptTargetHeaders
- Headers of createCollaborationWhitelistExemptTarget method
This 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.
client.getCollaborationAllowlistExemptTargets().getCollaborationWhitelistExemptTargetById(newExemptTarget.getId())
- collaborationWhitelistExemptTargetId
String
- The ID of the exemption to the list. Example: "984923"
- headers
GetCollaborationWhitelistExemptTargetByIdHeaders
- Headers of getCollaborationWhitelistExemptTargetById method
This 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.
client.getCollaborationAllowlistExemptTargets().deleteCollaborationWhitelistExemptTargetById(exemptTarget.getId())
- collaborationWhitelistExemptTargetId
String
- The ID of the exemption to the list. Example: "984923"
- headers
DeleteCollaborationWhitelistExemptTargetByIdHeaders
- Headers of deleteCollaborationWhitelistExemptTargetById method
This function returns a value of type void
.
A blank response is returned if the exemption was successfully deleted.