Making Your First API Call
Example: List Users#
Step 1: Obtain Access Token (see Quick Start)Step 2: Make the API CallStep 3: Handle the Response{
"code": 200,
"message": "Users retrieved successfully",
"data": {
"users": [
{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"ct_user_id": 10001,
"status": "active",
"role": "Standard User",
"group": "Sales Team",
"group_org_unit_id": 70035,
"account": "Acme Corporation",
"account_org_unit_id": 60001,
"agent_ring_to": "+14255551234",
"user_created": "2026-01-15T10:30:00.000Z"
}
],
"total": 1
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-04-03T12:34:56.789Z"
}
Modified at 2026-04-03 18:26:32