Skip to main content
GET
/
users
/
List Users
curl --request GET \
  --url https://data.craftflow.co/api/v1/users/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "email": "jane@example.com",
      "first_name": "Jane",
      "last_name": "Smith",
      "full_name": "Jane Smith",
      "is_active": true,
      "permissions": [
        "call_center_ai_coach",
        "call_center_ai_record"
      ],
      "created_at": "2025-06-15T14:30:00Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "email": "john@example.com",
      "first_name": "John",
      "last_name": "Doe",
      "full_name": "John Doe",
      "is_active": true,
      "permissions": [
        "ridealong_record"
      ],
      "created_at": "2025-05-10T09:15:00Z"
    }
  ],
  "pagination": {
    "count": 2,
    "page": 1,
    "page_size": 25,
    "total_pages": 1
  }
}

Authorizations

Authorization
string
header
required

Your API key, prefixed with cf_live_.

Query Parameters

is_active
boolean

Filter by active status.

ordering
enum<string>
default:-created_at

Sort results by a field. Prefix with - for descending order.

Available options:created_at-created_at
page
integer
default:1

Page number.

Required range:x >= 1
page_size
integer
default:25

Number of results per page.

Required range:1 <= x <= 100

Response

A paginated list of users.
data
object[]
required