Get users
Returns a paged list of the active users in the key's environment, 100 per page.
Invited and deactivated memberships are left out, and so is the GeoDynamics support identity. What you get back is the set of people you can actually attach to a workplace group.
Query parameters
| Name | Type | Required | Example |
|---|---|---|---|
pageZero-based page index. Defaults to 0. | integer | optional | 0 |
Responses
200OK
| Field | Type |
|---|---|
itemsUsers on this page. | array |
filterPaging state for this query. | object |
{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "John Doe",
"email": "john.doe@example.com"
}
],
"filter": {
"page": 0,
"pageSize": 100,
"totalCount": 1,
"sortAscending": true,
"sortString": "",
"searchString": ""
}
}401Unauthorized. Missing or invalid service key.
403Forbidden. The key lacks the required scope.