curl --request GET \
--url https://api.open.cx/blocklist/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"contact_id": "<string>",
"email": "<string>",
"name": "<string>",
"phone_number": "<string>",
"reason": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"total_pages": 123
}List all blocked contacts. Blocked contacts are ignored by the AI — their messages will not trigger any automated responses.
curl --request GET \
--url https://api.open.cx/blocklist/contacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"contact_id": "<string>",
"email": "<string>",
"name": "<string>",
"phone_number": "<string>",
"reason": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"total_pages": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number (default: 1)
Results per page (default: 20)
Was this page helpful?