v1
latestOpenAPI 3.1.02026-07-2489171167.4 KBGroups
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.
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"
}
]
}
}