v2

latestOpenAPI 3.0.32026-08-07222102695.9 KB
Contact

List contacts

get/contacts

Query parameters

pageinteger
per_pageinteger
sortstring[]

Comma separated search fields. See: Ordering

[
  "created_at:desc"
]
order'asc' | 'desc'
q[]string[]

Filter result by one or more fields.

See Filtering Results

Available filters:

ValueFormat
archived_atdate-time
company_namestring
created_atdate-time
deleted_atdate-time
emailstring
first_namestring
idint64
last_namestring
occupationstring
type_codeinteger
updated_atdate-time

Response

successful operation

total_entriesinteger

Example response

{
  "contacts": [
    {
      "country_code": "AU",
      "links": {
        "self": "https://api.au1.cliniko.com/v1/contacts/1"
      },
      "phone_numbers": [
        {
          "normalized_number": "39012345678",
          "number": "0-123-456-78"
        }
      ]
    }
  ],
  "total_entries": 1,
  "links": {
    "self": "https://api.au1.cliniko.com/v1/contacts?page=2",
    "previous": "https://api.au1.cliniko.com/v1/contacts?page=1",
    "next": "https://api.au1.cliniko.com/v1/contacts?page=3"
  }
}