URL:
https://{{wolkvox_server}}/server/API/v2/collections/insertObligation.php
Description:
This API provides the ability to add new obligations to existing collections in the CRM system. Obligations represent the financial commitments or payment agreements between the company and its customers. By using this API, agents or administrators can efficiently record and manage obligations.
¿How it works?
This API operates through a ‘raw‘ type body and a PUT request, which requires the following fields for 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-Token | It is the token configured by the client on the CRM page. | A8K3J7F2 |
operation | It is the name of the CRM operation. | “operation”:”testmodule” |
wolkvox_id | It is the identifier of the record in collections. | “wolkvox_id”: “61fa3” |
fields | It is the set of attributes for the new obligation. | |
id | Identification code of the obligation in the specified record. | “id”: “obl1” |
name | Name of the obligation. | “name”: “Invoice 12345 – Pending Payment” |
total_balance | It is the total balance. | “total_balance”: “10000” |
portfolio_type | It is the associated portfolio type. | “portfolio_type”: “VIP Client” |
last_pay | It indicates the amount of the last associated payment. | “last_pay”: “2000” |
last_pay_date | It indicates the date of the last associated payment. | “last_pay_date”: “06-06-2023” |
expiring_date | It indicates the due date. | “expiring_date”: “07-07-2023” |
days_delay | It indicates the number of days of delay. | “days_delay”: “90” |
form | It is a dataset representing additional fields (in obligations) created as complements to the default ones. | “form”: [
{
“name”: “Degree”,
“value”: “degree value”
},
{
“name”: “Frequency”,
“value”: “Frequent”
}
] |
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://{{wolkvox_server}}/server/API/v2/collections/updateObligation.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": "",
"wolkvox_id": "",
"obligation": "",
"fields": {
"id": "",
"name": "",
"total_balance": "",
"portfolio_type": "",
"last_pay": "",
"last_pay_date": "",
"expiring_date": "",
"days_delay": "",
"form": [
{
"name": "",
"value": ""
},
{
"name": " ",
"value": ""
}
]
}
}
',
CURLOPT_HTTPHEADER => array(
'Wolkvox-Token: {{Wolkvox-Token}}',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
curl --location --request POST 'https://{{wolkvox_server}}/server/API/v2/collections/updateObligation.php' \
--header 'Wolkvox-Token: {{Wolkvox-Token}}' \
--header 'Content-Type: application/json' \
--data '{
"operation": "",
"wolkvox_id": "",
"obligation": "",
"fields": {
"id": "",
"name": "",
"total_balance": "",
"portfolio_type": "",
"last_pay": "",
"last_pay_date": "",
"expiring_date": "",
"days_delay": "",
"form": [
{
"name": "",
"value": ""
},
{
"name": " ",
"value": ""
}
]
}
}
'
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\r\n \"operation\": \"\",\r\n \"wolkvox_id\": \"\",\r\n \"obligation\": \"\",\r\n \"fields\": {\r\n \"\": \"\",\r\n \"name\": \"\",\r\n \"total_balance\": \"\",\r\n \"portfolio_type\": \"\",\r\n \"last_pay\": \"\",\r\n \"last_pay_date\": \"\",\r\n \"expiring_date\": \"\",\r\n \"days_delay\": \"\",\r\n \"form\": [\r\n {\r\n \"name\": \"\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \" \",\r\n \"value\": \"\"\r\n }\r\n ]\r\n }\r\n}\r\n");
Request request = new Request.Builder()
.url("https://{{wolkvox_server}}/server/API/v2/collections/updateObligation.php")
.method("POST", body)
.addHeader("Wolkvox-Token", "{{Wolkvox-Token}}")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
import requests
import json
url = "https://{{wolkvox_server}}/server/API/v2/collections/updateObligation.php"
payload = json.dumps({
"operation": "",
"wolkvox_id": "",
"obligation": "",
"fields": {
"id": "",
"name": "",
"total_balance": "",
"portfolio_type": "",
"last_pay": "",
"last_pay_date": "",
"expiring_date": "",
"days_delay": "",
"form": [
{
"name": "",
"value": ""
},
{
"name": "",
"value": ""
}
]
}
})
headers = {
'Wolkvox-Token': '{{Wolkvox-Token}}',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
KEY | DESCRIPTION | EXAMPLE |
---|---|---|
code | It indicates the response status code. | “code”: 200 |
error | Provides details about the error that occurred during the request. | “error”: “null” |
msg | Displays a descriptive message about the request outcome. | “msg”: “Succesfully edit record” |
data | It is the set of information obtained as a result of making the request. | {
“code”: “200”,
“error”: “null”,
“msg”: “2 records were are found”,
“data”: [
{
“Company ID”: 12345,
“Company name”: “Tech Solutions Inc.”,
“Email”: “[email protected]”,
“wolkvox_id”: “64dc”
},
{
“Company ID”: 1001,
“Company name”: “GreenTech Innovations Ltd.”,
“Email”: “[email protected]”,
“wolkvox_id”: “64dcf”
}
]
} |
{
"code": 200,
"error": "null",
"msg": "Succesfully create record",
"data": {
"wolkvox_id": "123cb"
}
}
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