campaigns
List contacts in a campaign's call queue
Retrieves the paginated list of phone numbers (contacts) in a campaign's call queue. Each entry includes the phone number, associated metadata (json_csv_infos: firstname, lastname, company, custom fields), call status (pending, called, answered, failed), retry count, and call timestamps. Results are paginated using limit_count and limit_offset.
Permission: No specific permission required. A valid API key is sufficient.
get/campaigns/call/{campaignscalllistuuid}/numbers
Path parameters
campaignscalllistuuidstring uuid required
The UUID of the campaign (e.g., 1a7a5639-3818-4b0e-9285-f6b3795f8db4). Use GET /campaigns/call to discover campaign UUIDs.
Query parameters
limit_countinteger
Maximum number of results to return per page. Default: server-defined.
limit_offsetinteger
Number of results to skip for pagination. Default: 0.
Response
Successful operation
Example response
{
"campaign_calllist_uuid": "b55f949b-c49b-4354-b10a-c8c4cdbd8690",
"team_id": 123123,
"user_id": 234234,
"name": "My campaign CALL List",
"fifo_left_to_call": 8,
"update_date": "2018-08-12T12:12:40.53Z",
"creation_date": "2018-08-12T12:12:40.53Z",
"deletion_date": "2018-08-12T12:12:40.53Z",
"max_retry": 3,
"retry_time": 200,
"ivr_id": 200,
"start_date": "2018-08-12T12:12:40.53Z",
"campaign_count_numbers": 50,
"campaign_count_active_numbers": 10,
"campaign_count_users": 5,
"campaign_count_groups": 7,
"stop_reason": "no more numbers to call",
"script": {
"script_uuid": "1a7a5639-3818-4b0e-9285-f6b3795f8db4",
"generic_uuid": "1a7a5639-3818-4b0e-9285-f6b3795f8db4",
"name": "My script",
"is_enabled": true
},
"limit_count_setted": 1,
"total_numbers_list_count": 8,
"numbers_list": [
{
"number_id": 123123,
"campaign_calllist_uuid": "b55f949b-c49b-4354-b10a-c8c4cdbd8690",
"to_number_format": {
"raw": 184800000,
"country_code": "33",
"country": "FR",
"e164": "+33184800000",
"international": "+33 1 84 80 00 00",
"international_alt": "33184800000",
"national": "01 84 80 00 00",
"national_alt": "0184800000",
"rfc3966": "tel:+33-1-84-80-00-00"
},
"max_retry": 3,
"done_date": "2018-08-14T11:13:41.53Z",
"creation_date": "2018-08-12T12:12:40.53Z",
"scheduled_callback_date": "2018-08-12T12:12:40.53Z",
"call_by_user_id": 123123,
"call_id": 123123,
"json_csv_infos": "{\"company\": \"Ringover\", \"firstname\": \"John\", \"lastname\": \"Doe\", \"social_data\": [{\"country\": \"FR\"}, {\"city\": \"Paris\"}]}"
}
],
"numbers_list_len": 1
}