The PATCH /groups/{groupId} endpoint updates the group matching the provided group ID with provided values.

Headers

Header parameters in Requests (User Admin API) apply to this endpoint.

Authorization scopes supported:

ScopeAccess granted
users:writeEntire endpoint

Parameters

groupId

Type

Required

Example

StringTrue8e22b1fe-d2ea-403d-8c03-50eb21188e79

The group ID of the required group.

Requests

Example Request

curl -L -X PATCH "https://***.api.newvoicemedia.com/useradmin/groups/8e22b1fe-d2ea-403d-8c03-50eb21188e79" \
-H "Content-Type: application/json" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>" \
--data-raw "<JSON BODY>"

Request body parameters

The endpoint requires a group object in JSON format as in the request body.

Example request body

{
  "groupName": "changed name",
  "groupMaxUnexpectedTime": 7200,
  "groupMaxWrapUpTime": 7200
} 

where:

Response

Successful response

Successful requests return a 200 Success code.