fbpx

< / >

Insert management

Insert management

URL:

https://{{wolkvox_server}}/server/API/v2/collections/insertObligation.php

Description:

This API allows inserting managements into a record of a debt collection module.

¿How it works?:

This API operates through a ‘raw‘ type body and a POST request, which requires the following fields for its proper functioning:

The request headers require:

  • Wolkvox-Token

– In the request body, it is required:

  • operation
  • wolkvox-id
  • fields

Note: Within ‘fields‘, the main field to reference the record where you want to insert the action is ‘wolkvox_idRecord’. The mandatory fields are: ‘tipification_code’, ‘tipification_desc’, ‘module’, and ‘wolkvox_idRecord’.

The remaining fields within ‘fields’ are optional and depend on your requirements for inserting the action.

REQUEST

KEY
DESCRIPCIÓN
EJEMPLO
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”
fields
JSON object containing a set of attributes describing the action to be inserted.
“fields”: {}
tipifycation_code
Classification code.
tipifycation_desc
Classification description.
module
CRM module. In this case, being an API for debt collection, it should target the ‘collections’ module.
“module”: “collections”
id_customer
Customer identification number.
customer_id
Additional customer identification.
wolkvox_idRecord
Identification code of the record in the collections module.
wolkvox_idCall
Call identification number.
client_name
Customer name.
client_lastname
Customer last name.
client_type_document
Customer’s identification document type.
client_telephone
Customer’s phone number.
agent_name
Name of the agent who performed the action.
agent_id
Agent’s extension number.
type_interaction
Type of interaction used to manage the record.
time
Interaction time.
date
Interaction date.
campaign_id
Campaign identification code.
wolkvox_idCustomer
Customer identification number in the wolkvox application.
wolkvox_phoneCall
Phone number in the wolkvox application.
wolkvox_CrmPhoneCall
Phone number in the call of the wolkvox CRM application.
obligation
Obligation reference name.

REQUEST

				
					$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://{{wolkvox_server}}/server/API/v2/collections/insertGestion.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": "",
    "fields": {
        "tipifycation_code": "",
        "tipifycation_desc": "",
        "module": "",
        "id_customer": "",
        "customer_id": "",
        "wolkvox_idRecord": "",
        "wolkvox_idCall": "",
        "client_name": "",
        "client_lastname": "",
        "client_type_document": "",
        "client_telephone": "",
        "agent_name": "",
        "agent_id": "",
        "type_interaction": "",
        "time": "",
        "date": "",
        "campaign_id": "",
        "tipification_code": "",
        "tipification_description": "",
        "wolkvox_idCustomer": "",
        "wolkvox_phoneCall": "",
        "wolkvox_CrmPhoneCall": "",
        "obligation": ""
    }
}',
  CURLOPT_HTTPHEADER => array(
    'Wolkvox-Token: {{Wolkvox-Token}}',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

				
			

RESPONSE

KEY
DESCRIPTION
EXAMPLE
code
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 result of the request.
“msg”: “Succesfully edit record”
data
It is the set of information obtained as a result of making the request.
“data”: { “wolkvox_id”: “” }
				
					{
    "code": 200,
    "error": "null",
    "msg": "Succesfully create record",
    "data": {
        "wolkvox_id": "123cb"
    }
}
				
			
Possible error codes

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

We use cookies, if you continue browsing we will assume that you agree. You can read more about the use of cookies in our privacy policies and treatment of personal data