List Users
GET
/api/v1/usersRetrieves a paginated list of users from your organization.
Query Parameters
| Name | Type | Description |
|---|---|---|
page | integer | Page number (starts at 1) |
limit | integer | Number of results per page (max 100) |
status | string | Filter by user status (active, inactive, pending) |
Headers
| Name | Type | Description |
|---|---|---|
Authorizationrequired | string | Bearer token for authentication |
Response200
json
{
"data": [
{
"id": "usr_123abc",
"email": "john@example.com",
"name": "John Doe",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"meta": {
"page": 1,
"limit": 20,
"total": 42
}
}