Retrieves the list of users who are members of a user group
Use this endpoint to see which users belong to a specific user group.
Requires Users and Roles View permission.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| userGroupId | Unique numeric identifier of the user group | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
UserChild
| Property | Description | Type |
|---|---|---|
| fullName | The user’s full name | string |
| userCode | The user code | string |
| userId | The user identifier | integer (int32) |
Example Response
[
{ "fullName": "string", "userCode": "string", "userId": 1
}
]
404
Not Found
The requested resource was not found. Verify the ID or path is correct.