List OrgUsers
| Description | Lists all orgusers related to a root org id (paginated) |
| HTTP Method | /v1/identity/organizations/{organization_id}/orgusers |
| HTTP Path | GET |
| Associated Scope(s) | identity.employees |
Request Path Parameters (If Any)
| Name | Type | Description |
|---|---|---|
| organization_id | string | Root Org UUID. |
Request Query/Body Parameters (If Any)
| Name | Type | Description |
|---|---|---|
| limit | int | Limit on the number of records to return. Default is 10, max is 100. |
| pageToken | string | If a previous response included a page_token it can be passed in here so that the next page of records can be returned. |
| criteria |
Response Fields (If Any)
| Name | Type | Description |
|---|---|---|
| orgusers | array | Array of entities.OrgUser (orgusers). |
| limit | int | Requested limit on the number of records to return. |
| pageToken | int | Token to be passed in next request so that the next page of records can be returned. |
| totalResults | int | The total number of results returned by the list or query operation. The value may be larger than the number of resources returned, such as when returning a single page of results where multiple pages are available. |
Endpoint Specific Errors (Standard API Errors are defined here)
| Http Status Code | Code | Message |
|---|---|---|
| 400 | bad_request | A bad request like “non-existent orgID” |
| 401 | unauthorized | No authentication provided, or invalid auth credentials, or missing scopes, etc. |