page and limit parameters to paginate results. Default is page 1 with 100 items per page.search parameter to filter numbers by partial match.sort_by: field to sort by (phone_number) - default: phone_number.sort_order: sort direction (asc, desc) - default: desc.curl --location 'https://platform-api.convirza.com/v3/blacklist?org_unit_id=&page=&limit=&search=&sort_by=&sort_order=' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "Success",
"data": {
"blacklist_numbers": [
{
"number": "2342342342",
"org_unit_id": 70035
},
{
"number": "9876543210",
"org_unit_id": 70035
}
],
"total": 150
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}