Versions Compared

Key

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

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

Panel
borderColor#eeeeee
bgColorwhite
titleColorwhite
borderWidth1
titleBGColor#7ec9f4
borderStylesolid
titleIn this page

Table of Contents

Parameters

The endpoint accepts the following query parameters:

userID

Type

Required

Example

StringTrue2f9207ca-8922-4245-bfc5-d8f42939e29a

The user ID of the required user.

limit

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.

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.