URL:
https://wv{{wolkvox_server}}.wolkvox.com/api/v2/campaign.php?api=campaign_15&campaign_id={{campaign_id}}
Description:
This API allows users to programmatically retrieve all records associated with a specific campaign (Predictive/Progressive or Preview) in Wolkvox Manager. This functionality includes both managed (contacted with a result) and unmanaged records, as well as those with or without a conn_id (connection identifier).
This API ensures that the exported data is fully consistent with what would be obtained through the direct export option from the Wolkvox Manager user interface, ensuring data integrity and reliability when integrating with other systems or conducting external analyses.
Benefits:
How it works:
Code Examples:
In our Postman workspace ([click here] to access it), you have access to code examples that facilitate integration with our APIs in different programming languages such as cURL, Python, JavaScript, and more.
This feature is ideal for quick integrations and allows you to adapt the API calls to your system’s programming language.
How to Use the Code Examples:
NAME | DESCRIPTION | TYPE |
---|---|---|
type_campaign (URL) | Campaign type. | String |
campaign_id (URL) | Refers to the campaign’s identification code. | String |
date_ini (URL) | Start date (YYYYmmddHHiiss). | String |
date_end (URL) | End date (YYYYmmddHHiiss). | String |
NAME | DESCRIPTION | TYPE |
---|---|---|
code | API response status code. | String |
total_records | Total number of campaign records returned in the response. | String |
campaign_id | Unique identifier of the campaign to which the records belong. | String |
records | Array of objects, where each object represents an individual campaign record and contains its associated data. The fields within each record may vary depending on the campaign configuration. | Array |
nombre_cliente | Customer’s first name. | String |
apellido_cliente | Customer’s last name. | String |
tipo_doc | Customer’s ID document type. | String |
id_cliente | Customer’s identification number. | String |
edad | Customer’s age. | String |
sexo | Customer’s gender. | String |
pais | Customer’s country of residence. | String |
departamento | Customer’s state or department. | String |
ciudad | Customer’s city. | String |
zona | Customer’s geographic zone. | String |
direccion | Customer’s home address. | String |
opt1 → opt12 | Custom optional campaign fields. These fields may contain any type of additional data loaded in the campaign file. | String |
tel 1 → tel10 | Phone numbers associated with the customer. | String |
tel_extra | Additional phone number field. | String |
id_agent | Agent ID (provided by the Wolkvox system) who managed the record. | String |
resultado | Final result of the record handling. Possible values: ANSWER MACHINE (answered by a machine), NO ANSWER (not answered), FAILED (failed), ANSWER (answered), CONGESTION (network congestion), ABANDON (abandoned), BUSY (busy line), CHANUNAVAIL (channel unavailable for outbound call) | String |
llamadas | Number of call attempts. | String |
id_call | Unique identifier of the last call. | String |
cod_rslt1 | Group 1 activity code used by the agent to classify the call result. | String |
description_cod1 | Description of activity code 1. | String |
cod_rslt2 | Group 2 activity code used by the agent to classify the call result. | String |
comentarios | Comment or note history recorded by agents. | String |
rellamada | Scheduled callback date and time, if applicable. | String |
rellamada_count | Number of times a callback has been scheduled for this record. | String |
Customer’s email address. | String | |
rellamada_tel | Specific callback phone number. | String |
last_dial_tele | (Duplicate) Specific callback phone number. | String |
history_dial_tel | Detailed call attempt history, including date, result, and dialed number. | String |
rellamada_info | Additional information related to the callback. | String |
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://wv{{wolkvox_server}}.wolkvox.com/api/v2/campaign.php?api=campaign_15&campaign_id={{campaign_id}}',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'wolkvox-token: {{wolkvox-token}}'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
curl --location --globoff 'https://wv{{wolkvox_server}}.wolkvox.com/api/v2/campaign.php?api=campaign_15&campaign_id={{campaign_id}}' \
--header 'wolkvox-token: {{wolkvox-token}}'
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("https://wv{{wolkvox_server}}.wolkvox.com/api/v2/campaign.php?api=campaign_15&campaign_id={{campaign_id}}")
.method("GET", body)
.addHeader("wolkvox-token", "{{wolkvox-token}}")
.build();
Response response = client.newCall(request).execute();
import requests
url = "https://wv{{wolkvox_server}}.wolkvox.com/api/v2/campaign.php?api=campaign_15&campaign_id={{campaign_id}}"
payload = {}
headers = {
'wolkvox-token': '{{wolkvox-token}}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
{
"code": "200",
"total_records": "",
"campaign_id": "",
"records": [
{
"nombre_cliente": "",
"apellido_cliente": "",
"tipo_doc": "",
"id_cliente": "",
"edad": "",
"sexo": "",
"pais": "",
"departamento": "",
"ciudad": "",
"zona": "",
"direccion": "",
"opt1": "",
"opt2": "",
"opt3": "",
"opt4": "",
"opt5": "",
"opt6": "",
"opt7": "",
"opt8": "",
"opt9": "",
"opt10": "",
"opt11": "",
"opt12": "",
"tel1": "",
"tel2": "",
"tel3": "",
"tel4": "",
"tel5": "",
"tel6": "",
"tel7": "",
"tel8": "",
"tel9": "",
"tel10": "",
"tel_extra": "",
"id_agent": "",
"resultado": "",
"fecha": "",
"llamadas": "",
"id_call": "",
"cod_rslt1": "",
"description_cod1": "",
"cod_rslt2": "",
"description_cod2": "",
"comentarios": "",
"rellamada": "",
"rellamada_count": "",
"email": "",
"rellamada_tel": "",
"last_dial_tele": "",
"history_dial_tel": "",
"rellamada_info": ""
}
]
}
Sao Paulo +55 (11) 521 75 933
Santiago de Chile +56 (2) 240 533 89
Medellín +57 (604) 322 98 80
Ciudad de Guatemala +502 (2) 3141344
Ciudad de México +52 (55) 8526 36 34
Copyright © 2025 WOLKVOX MICROSYSLABS. 1820 N Corporate Lakes Blvd, unit 205. Weston, FL 33326
COLOMBIA
Medellín +57 (4) 322 98 80
Bogotá +57 (1) 381 90 40
Cali +57 (2) 891 28 46
Barranquilla +57 (5) 316 10 34
ARGENTINA
Buenos Aires +54 (11) 5217 5933
SPAIN
Madrid +34 (910) 601 691
MEXICO
Ciudad de México +52 (55) 8526 36 34
BRASIL
Brasilia +55 (61) 9836 4127
São Paulo +55 (12) 9811 155 83
UNITED STATES
New York +1 (914) 373 71 36
DOMINICAN REPUBLIC
Santo Domingo +1 (829) 249 69 68
CHILE
Santiago de Chile +56 (2) 240 533 89
GUATEMALA
Ciudad de Guatemala +502 (2) 314 1344
PERU
Lima +51 (1) 644 91 39
Copyright © 2025 WOLKVOX MICROSYSLABS.
Cra 30 # 4A – 45 Of. 205 Ed. FOREVER W&L, Medellín, Colombia
Usamos cookies, se continuar a navegar assumimos que concorda. Pode ler mais sobre a utilização de cookies nas nossas políticas de privacidade e tratamento de dados pessoais