Skip to main content

List Users

List users in the organization with pagination.

Quick Navigation
Outline

Endpoint

GET /api/v1/users?skip=0&limit=100

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>

Query Parameters

ParameterTypeRequiredDescription
skipintegerNoNumber of records to skip (default: 0)
limitintegerNoMaximum 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.