List Users

Get a paginated list of users

GEThttps://api.jamdesk.com/api/v1/users

Returns a paginated list of users.

Query Parameters

limitintegerdefault: 20

Maximum number of results to return.

offsetinteger

Pagination offset for fetching subsequent pages.

searchstring

Search by name or email.

curl -X GET "https://api.example.com/v1/users?limit=20&search=jane" \
  -H "Authorization: Bearer $TOKEN"
{
  "data": [
    {
      "id": "user_123",
      "email": "jane@example.com",
      "displayName": "Jane Doe",
      "createdAt": "2024-01-15T10:30:00Z"
    }
  ],
  "meta": {
    "total": 150,
    "limit": 20,
    "offset": 0
  }
}