Gets the user list for a user group
GET /v1/usergroup/{userGroupID}/list
Summary
Gets the user list for a user group.
Details
Returns the users in the group with availability details.
This endpoint is restricted to the group creator.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| userGroupID | path | integer (int64) | Yes | The ID of the user group whose users should be returned. | 1 |
Request Body
No request body is documented here.
Responses
200
Success
application/json
- array of
UserAvailabilitykey(integer (int64), optional)emailAddress(string, optional)firstName(string, optional)lastName(string, optional)description(string, optional)availability(string, optional)timeZone(string, optional)
Example
[
{
"key": 101,
"emailAddress": "testuser@actionstreamer.com",
"firstName": "Test",
"lastName": "User",
"description": "Example description",
"availability": "Available",
"timeZone": "America/New_York"
}
]