URL:
https://{{wolkvox_server}}/server/API/v2/custom/insert.php
Description:
The following API configuration allows us to add call-type activities in the modules of our CRM.
How it works?
This API operates through a POST request, which requires the following fields for its proper functioning:
– In the request headers, the following is required:
– In the request body, the following is required:
How to determine the CRM server?
Important Notice: Access Route Update
Starting September 1, 2024, new URLs will be implemented to access the wolkvox CRM platform. The current URLs will coexist with the new ones until November 30, 2024, after which they will be disabled.
New URLs:
From “https://sv0001.crmvox.com” to “https://crm0001.wolkvox.com“
From “https://sv0000.crmvox.com” to “https://crm0000.wolkvox.com“
Please ensure you update your integrations and automations before November 30, 2024, to avoid service interruptions.
KEY | DESCRIPTION | EXAMPLE |
---|---|---|
Wolkvox-Server | Server nomenclature of the operation. | wolkvox_server.crmvox.com |
Wolkvox-Token | Token generated in the CRM module where you will consume the API. | token |
operation | It is the name of the CRM operation. | “My-CRM-operation” |
module | Used to indicate that an insertion in the CRM activity list is desired. | “module”:”wolkvox_activities” |
type | Type of activity to create. | “type”: “task” |
fields | It is the set of attributes or data parameters sent to the API to create a new task in the selected module. Each field corresponds to a specific piece of information about the task, such as its status, name, priority, completion date, etc. The API expects these fields in JSON format, where each field is represented as a key-value pair. | “fields”: { } |
status | Activity status. | “status”: “created” |
name | Activity name. | “name”: “Activity name” |
priority | Activity priority. The value can be “high”, “normal”, or “low”. | “priority”: “low” |
name_module | Name of the module where you want to add the activity. | “name_module”: “cases” |
completion_date | Completion date of the activity in year-month-day hour-minute-second format. | “completion_date”: “2023-07-30 00:00:00” |
remember | Indicates whether you want to activate (true) or deactivate (false) a reminder. | “remember”: true |
reminder_date | Sets the date for when you want the reminder to be activated. The format is year-month-day hour-minute-second. | “reminder_date”: “2023-07-29 00:00:00” |
description | Activity description. | “description”: “This is an activity description.” |
id_record | Identification code of the selected module record where you want to add the activity. | “id_record”: “Id record” |
wolkvox_owner | Activity owner user. | “wolkvox_owner”: “ADMIN_@mymodule” |
phone | This field is used to provide the contact details of the phone associated with the activity. It is used to specify the phone number of the sender or recipient in the call activity. | “phone”: { } |
type | Indicates the type of the phone number provided in the API. In this case, it indicates that the phone number provided in the API corresponds to a standard phone number used for telecommunication. | “type”:”telephone” |
country | Indicates the country associated with the phone number. | “country”: “USA” |
code | It is used to specify the country code associated with the phone number. | “code”:”1″ |
value | It is used to specify the numerical value of the phone number associated with the activity. | “value”:”1234567898″ |
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://{{wolkvox_server}}/server/API/v2/custom/insert.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"operation":"{{operation}}",
"module":"wolkvox_activities",
"type": "call",
"fields":{
"status":"created",
"name": "{{name}}",
"priority": "{{priority}}",
"name_module": "{{module}}",
"completion_date": "{{YYYYmmdd HHiiss}}",
"remember": {{remember}},
"reminder_date": "{{YYYYmmdd HHiiss}}",
"description": "{{description}}",
"id_record": "{{id record}}",
"location":"{{location}}",
"wolkvox_owner":"{{owner}}",
"phone": {
"type":"telephone",
"country": "{{country}}",
"code":"{{country code}}",
"value":"{{phone}}"
}
}
}',
CURLOPT_HTTPHEADER => array(
'Wolkvox-Token: {{token}}',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
curl --location 'https://{{wolkvox_server}}/server/API/v2/custom/insert.php' \
--header 'Wolkvox-Token: {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"operation":"{{operation}}",
"module":"wolkvox_activities",
"type": "call",
"fields":{
"status":"created",
"name": "{{name}}",
"priority": "{{priority}}",
"name_module": "{{module}}",
"completion_date": "{{YYYYmmdd HHiiss}}",
"remember": {{remember}},
"reminder_date": "{{YYYYmmdd HHiiss}}",
"description": "{{description}}",
"id_record": "{{id record}}",
"location":"{{location}}",
"wolkvox_owner":"{{owner}}",
"phone": {
"type":"telephone",
"country": "{{country}}",
"code":"{{country code}}",
"value":"{{phone}}"
}
}
}'
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\r\n \"operation\":\"{{operation}}\",\r\n \"module\":\"wolkvox_activities\",\r\n \"type\": \"call\",\r\n \"fields\":{\r\n \"status\":\"created\",\r\n \"name\": \"{{name}}\",\r\n \"priority\": \"{{priority}}\",\r\n \"name_module\": \"{{module}}\",\r\n \"completion_date\": \"{{YYYYmmdd HHiiss}}\",\r\n \"remember\": {{remember}},\r\n \"reminder_date\": \"{{YYYYmmdd HHiiss}}\",\r\n \"description\": \"{{description}}\",\r\n \"id_record\": \"{{id record}}\",\r\n \"location\":\"{{location}}\",\r\n \"wolkvox_owner\":\"{{owner}}\",\r\n \"phone\": {\r\n \"type\":\"telephone\",\r\n \"country\": \"{{country}}\",\r\n \"code\":\"{{country code}}\",\r\n \"value\":\"{{phone}}\"\r\n\r\n }\r\n\r\n }\r\n}");
Request request = new Request.Builder()
.url("https://{{wolkvox_server}}/server/API/v2/custom/insert.php")
.method("POST", body)
.addHeader("Wolkvox-Token", "{{token}}")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
import requests
import json
url = "https://{{wolkvox_server}}/server/API/v2/custom/insert.php"
payload = json.dumps({
"operation": "{{operation}}",
"module": "wolkvox_activities",
"type": "call",
"fields": {
"status": "created",
"name": "{{name}}",
"priority": "{{priority}}",
"name_module": "{{module}}",
"completion_date": "{{YYYYmmdd HHiiss}}",
"remember": {{remember}},
"reminder_date": "{{YYYYmmdd HHiiss}}",
"description": "{{description}}",
"id_record": "{{id record}}",
"location": "{{location}}",
"wolkvox_owner": "{{owner}}",
"phone": {
"type": "telephone",
"country": "{{country}}",
"code": "{{country code}}",
"value": "{{phone}}"
}
}
})
headers = {
'Wolkvox-Token': '{{token}}',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
{
"code": 200,
"error": "null",
"msg": "Succesfully create record",
"data": {
"wolkvox_id": " "
}
}
Medellín +57 (604) 322 98 80
Bogotá +57 (601) 381 90 40
Cali +57 (602) 891 28 46
Barranquilla +57 (605) 316 10 34
Goiânia +55 (62) 99328 6605
Santiago de Chile +56 (2) 240 533 89
Atlanta +1 (678) 496 7474
Ciudad de Guatemala +502 (2) 314 1344
Ciudad de México +52 (55) 8526 36 34
Copyright © 2022 MICROSYSLABS S.A.S. Cra 30 # 4A-45 Of. 205 Ed. FOREVER W&L, Medellín, Colombia
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 © 2022 MICROSYSLABS S.A.S.
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