Skip to main content

List all contacts

Returns a list of your contacts. The contacts are returned sorted by creation date, with the most recently created contacts appearing first.

Parameters

No parameters.

Returns

Return a paginated response that contains an array of up to the specified limit of contacts.

get
/api/contacts
curl https://{workspace}.documocu.com/api/contacts \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {API_KEY}'
Response
{
"data": [
{
"address": null,
"city": null,
"color": "#9ee9a1",
"country": null,
"created_at": "2024-05-14T08:59:34+00:00",
"email": "[email protected]",
"first_name": "Claudine",
"full_name": "Claudine Muller",
"id": "con_ody240o93zzuch5n7412od42",
"job_title": null,
"last_name": "Muller",
"organization": null,
"phone_number": null,
"postal_code": null,
"state": null,
"updated_at": "2024-05-14T08:59:34+00:00"
}
],
"links": {
"first": "https://{workspace}.documocu.com/api/contacts?page=1",
"last": "https://{workspace}.documocu.com/api/contacts?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://{workspace}.documocu.com/api/contacts?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://{workspace}.documocu.com/api/contacts",
"per_page": 20,
"to": 1,
"total": 1
}
}