The PUT
/users/{userId}/permissions/groups
endpoint replaces the user’s group permissions for the user matching the user ID provided.
...
Insert excerpt _ExcerptAPICloudNextGen _ExcerptAPICloudNextGen nopanel true
Headers
Header parameters in Requests (User Admin API) apply to this endpoint.
Authorization scopes supported:
Scope | Access granted |
---|---|
users:write | Entire endpoint |
Parameters
userID
Type | Required | Example |
---|---|---|
String | True | 2f9207ca-8922-4245-bfc5-d8f42939e29a |
...
Code Block | ||||
---|---|---|---|---|
| ||||
curl -L -X PUT "https://***.api.newvoicemedia.com/useradmin/users/8e22b1fe-d2ea-403d-8c03-50eb21188e79/permissions/groups" \
-H "Content-Type: application/json" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>" \
--data-raw "<JSON BODY>" |
...
The endpoint requires a groupPermissions
object in JSON format as in the request body.
Example request body
Code Block | ||||
---|---|---|---|---|
| ||||
{ "groupPermissions": [ { "groupId": "1d75b21f-6d94-4477-9ba7-513a30bfc21d", "groupPermission": "Write" }, { "groupId": "fd6e3099-8673-4b11-865b-2e15ec80911a", "groupPermission": "Read" } ] } |
where:
groupPermissions
. The user’s group permissions.groupId
. The unique ID of the group that the user has access to.groupDisplayID
. The unique ID of the group that the user has access to.groupName
. The name of the group that the user has access to.groupPermission
. Access levels for accessing resources such as groups. Possible values: None, Read, Write.
Responses
Successful response
Successful requests return a 200 Success
code.
Insert excerpt _ExcerptRunInPostman _ExcerptRunInPostman nopanel true