Get all users in a group
GET/:customer_id/groups/:group_id/users
Fetch all users belonging to a group.
Request
Path Parameters
customer_id Customer Idrequired
Id of the tenant
group_id Group Idrequired
Id of the group
Query Parameters
limit Limit
Possible values: <= 1000
Default value: 100
Pagination. Max number of entries returned.
offset Offset
Pagination. Offset.
Responses
- 200
- 400
Successful response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
users object[]required
uid uuidrequired
Id of the user
member_since date-timerequired
Date in which this user joined the group
{
"users": [
{
"uid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"member_since": "2024-12-03T11:32:12.459Z"
}
]
}
Validation error
- application/json
- Schema
- Example (from schema)
Schema
message Messagerequired
errors undefined[]nullablerequired
{
"message": "string",
"errors": [
null
]
}
Loading...