get
https://hub.xyte.io/core/v1/organization/users
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Authorization
This endpoint requires Authorization.
Query Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
| page | integer | Page number, starting at 1. | 1 |
| per_page | integer | Number of results per page. Min: 1, Max: 100. | 100 |
Response
Returns Paginated data where each item has the following fields:
| Key | Type | Description |
|---|---|---|
| id | string | Unique identifier of the user (UUID). |
| name | string | Display name of the user. |
| string | Email address of the user. | |
| group_names | array | Names of the groups the user belongs to. |
| deactivated_at | datetime | Timestamp when the user was deactivated, or null if active. |
| created_at | datetime | Timestamp when the user was created. |
NoteOnly active (non-deactivated) users are returned.
{
"items": [
{
"id": "9e34b87d-79ca-4dc3-ac42-8ce9ebe8be82",
"name": "Jane Doe",
"email": "[email protected]",
"group_names": ["administrators"],
"deactivated_at": null,
"created_at": "2024-01-15T10:00:00Z"
}
],
"next_page": null
}