List Contacts

Retrieve a paginated list of contacts. Supports: - Pagination (`page_size`, `page`) - Date filtering (`updated_after`, `updated_before`) - Sorting (`order_by`) - Search (`q`)

Authentication

x-api-keystring
API Key authentication via header

Query parameters

page_sizeintegerOptional1-100Defaults to 20

Number of items per page (max 100)

pageintegerOptional>=1Defaults to 1

Page number (1-based)

updated_afterstringOptionalformat: "date-time"

Filter items updated after this timestamp (ISO 8601)

updated_beforestringOptionalformat: "date-time"

Filter items updated before this timestamp (ISO 8601)

order_byenumOptionalDefaults to asc
Sort order for results
Allowed values:
qstringOptional
Full text search across contact name, emails, and phones.

Response

List of contacts
namestring
Contact's full name
phoneslist of strings or null
List of contact phone numbers
emailslist of strings or null
List of contact email addresses
titlestring or null
Contact title
createdByUserobject or null
accountslist of objects or null
List of account objects
projectslist of objects or null
List of project objects

Errors