Get Contacts
Retrieve a paginated list of contacts in your organisation.
Endpoint
GET /clients/{client_uuid}/contacts
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| page | integer | The page number for pagination (default: 1) | No |
Response
A successful response will return a 200 OK status code and a JSON object containing the list of contacts and pagination metadata.
{
"data": [
{
"uuid": "248808cd-f2a5-457f-af4d-c4ae1a3d41ce",
"name": "Jeremy Bearimy",
"email": "[email protected]",
"phone": "01234 567890",
"role": "Head of Timeline Operations"
},
...
],
"pagination": {
"current_page": 1,
"per_page": 20,
"total_pages": 1,
"total_items": 5
}
}