List group users
GET/group/:id
Returns a list of users in a given group
Request
Path Parameters
id stringrequired
Group ID
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
limit integer
offset integer
results object[]
email string
id string
name string
total integer
{
"limit": 0,
"offset": 0,
"results": [
{
"email": "string",
"id": "string",
"name": "string"
}
],
"total": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Loading...