List Users
List users in the organization with pagination.
Quick Navigation
Endpoint
GET /api/v1/users?skip=0&limit=100
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
skip | integer | No | Number of records to skip (default: 0) |
limit | integer | No | Maximum records to return (default: 100) |
Response
Success (200)
{
"success": true,
"data": {
"users": [
{
"id": 123,
"email": "user@example.com",
"display_name": "John Doe",
"status": "active"
}
],
"total_count": 50,
"message": "Users listed successfully"
},
"message": "Users listed successfully"
}
Features
- Pagination support
- Role-based filtering
- Search capabilities
Status
[WARNING] TODO: Not Implemented
This endpoint is defined in the router but the implementation logic is not yet complete.