Users
List users
GET/v1/users
Return a paginated list of users in your workspace, newest first.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
limit |
query | integer | Page size, 1–100. Default 25. |
cursor |
query | string | Pagination cursor from a previous page. |
role |
query | string | Filter by role, e.g. admin, member. |
Request
curl --request GET \
--url https://api.sysos.app/v1/users \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Content-Type: application/json"
Response 200 OK
{
"data": [
{
"id": "usr_8c71e4f9",
"name": "Ada Lovelace",
"email": "ada@acme.com",
"role": "admin",
"created_at": "2026-01-12T09:30:00Z"
}
],
"has_more": false,
"next_cursor": null
}