cURL
curl --request GET \ --url https://your-instance.example.com/api/contacts \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "contacts": [ { "_id": "<string>", "firstName": "<string>", "lastName": "<string>", "phoneNumber": "<string>", "email": "<string>", "status": "<string>", "pipelineId": "<string>", "pipelineStage": "<string>", "organizationId": "<string>", "userId": "<string>", "createdBy": "<string>", "assignees": [ "<unknown>" ], "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ], "total": 123, "page": 123, "size": 123 }, "meta": {}, "contacts": [ { "_id": "<string>", "firstName": "<string>", "lastName": "<string>", "phoneNumber": "<string>", "email": "<string>", "status": "<string>", "pipelineId": "<string>", "pipelineStage": "<string>", "organizationId": "<string>", "userId": "<string>", "createdBy": "<string>", "assignees": [ "<unknown>" ], "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ], "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
JSON string range
Contacts returned
true
Show child attributes