Add Compliance Group Membership
Add multiple members to a compliance group. The provided list of users will replace the group's current membership. Any current members not in the provided list will have their membership deactivated.
Path parameters
groupIdstringRequired
URL-Safe encoded Group ID
Header parameters
sessionTokenstringRequired
Session authentication token.
Bodyobject[]
usernamestringOptionalExample:
dpayet
Responses
200
Success
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Session tokens invalid.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
404
Not found. See response body for further details.
application/json
500
Server error, see response body for further details.
application/json
put
PUT /pod/v2/admin/usergroups/{groupId}/memberships HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Content-Type: application/json
Accept: */*
Content-Length: 23
[
{
"username": "dpayet"
}
]
{
"format": "TEXT",
"message": "Success"
}
🚧 Roles and PrivilegesCalling this endpoint requires the Scope Management role with the MANAGE_ROLE_SCOPES entitleable action. See Bot Permissions for a list of roles and associated privileges.
Last updated
Was this helpful?