Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The GET /users/{userId}/groups endpoint gets a list of all groups for the user matching the user ID provided.

...

Type

Required

Example

integerFalse25

The required number of items per page. Minimum of 1. Maximum of 5000. Default is 25.

page

Type

Required

Example

integerFalse1

The required page. Minimum of 1, maximum of 1000000000. Default is 1.

Requests

Request user's linked groups

Code Block
languagepowershell
themeMidnight
curl -L -X GET "https://***.api.newvoicemedia.com/useradmin/users/8e22b1fe-d2ea-403d-8c03-50eb21188e79/groups" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>"

Responses

Responses contain a list of all groups for the user matching the user ID provided.

Successful response

Successful requests return a 200 Success code and a collection of groups.

Example response


Code Block
languagejs
themeMidnight
{
  "meta": {
    "page": 1,
    "count": 3,
    "pageCount": 1,
    "totalCount": 3
  },
  "userId": "2e112b55-abf7-4ae3-b737-517d0d01513f",
  "agentDisplayId": "9876",
  "agentGroups": [
    {
      "groupId": "b71db70d-287b-4478-ac04-9557be0f82b2",
      "groupDisplayId": "1122",
      "groupName": "Group1"
    },
    {
      "groupId": "c5cef79b-2fad-4316-be1f-e2003d592ffb",
      "groupDisplayId": "1133",
      "groupName": "Group2"
    },
    {
      "groupId": "ad1935ca-736c-4227-be30-dad9fdd5406b",
      "groupDisplayId": "1155",
      "groupName": "Group3"
    }
  ]
}

where:

  • userId. The unique ID of the user.
  • agentDisplayId. The agent's unique ID.
  • agentGroups. The groups that the agent is in.
    • groupId. The unique ID of the group.
    • groupDisplayID. The group's unique ID.
    • groupName. The name of the group.

Insert excerpt
_ExcerptRunInPostman
_ExcerptRunInPostman
nopaneltrue