v1

latestOpenAPI 3.1.02026-07-2489171167.4 KB
Groups

Get group members

Retrieves a paginated list of user IDs assigned to the specified group.

get/groups/{id}/members

Response

Returns a JSON object containing a endUsers and agents array with user ID, email and user name.

limitinteger

The number of items that are returned per page

offsetinteger

The offset used for pagination.

totalinteger

The total number of elements across all pages.

Example response

{
  "limit": 20,
  "total": 50,
  "data": {
    "agents": [
      {
        "id": 343,
        "email": "user@example.com",
        "userName": "john_doe"
      }
    ],
    "endUsers": [
      {
        "id": 343,
        "email": "user@example.com",
        "userName": "john_doe"
      }
    ]
  }
}