get
https://hub.xyte.io/core/v1/organization/groups
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 | Subkey | Type | Description |
|---|---|---|---|
| id | string | Unique identifier of the group (UUID). | |
| name | string | Name of the group. | |
| created_at | datetime | Timestamp when the group was created. | |
| users | array | Users currently in the group. | |
| id | string | User UUID. | |
| name | string | User display name. | |
| string | User email address. |
{
"items": [
{
"id": "269ec8e1-f599-4918-a36b-424aaeef6b83",
"name": "administrators",
"created_at": "2024-01-15T10:00:00Z",
"users": [
{
"id": "faf2ccca-7c32-4711-91c6-73f1b353ce3c",
"name": "Jane Doe",
"email": "[email protected]"
}
]
}
],
"next_page": null
}