Groups
List users in a group
Returns active users from one group visible in the Workspace Groups UI.
Example request:
GET /v1/groups/groupEngineering/users?limit=2
A missing, hidden, deleted, or cross-Account group returns 404 not_found:
{
"error": {
"code": "not_found",
"message": "Group not found.",
"details": null
}
}
get/groups/{groupId}/users
Path parameters
groupIdstring required
Opaque group identifier.
Query parameters
limitinteger
Maximum number of records to return.
cursorstring
Opaque pagination cursor returned by the previous response.
Response
Group user list.
Example response
{
"data": [
{
"userId": "123"
}
]
}