Contacts

List contacts

Returns a paginated list of contacts. Supports filtering by contact name.

get/contacts

Query parameters

pageinteger

Page number (1-based)

Example:1

Page number (1-based)

sizeinteger

Number of items per page

Example:25

Number of items per page

namestring

Filter by contact name

Filter by contact name

Response

Paginated list of contacts

Example response

{
  "data": [
    {
      "id": 1,
      "name": "John Doe",
      "email": "john.doe@example.com",
      "phoneNumber": "+1234567890",
      "jobTitle": "Sales Manager",
      "crmPersonId": "003ABC123",
      "crmIdentifier": "003ABC123",
      "crmLink": "https://example.my.salesforce.com/003ABC123",
      "crm": "salesforce",
      "accountId": 42
    }
  ],
  "pagination": {
    "page": 1,
    "size": 25,
    "total": 100
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.