cURL
curl --request POST \ --url https://your-instance.example.com/api/contacts/active \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "channelType": "<string>", "ownerFilter": "<string>" } '
{ "data": [ { "_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, "status": "<string>", "stageIdByName": {}, "stageNameById": {} }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Active contacts returned
Show child attributes