fbpx
Search
Close this search box.
Search
Close this search box.

< / >

APIs Customer

4. Skill detail reports En

URL: https://wv{{wolkvox_server}}.wolkvox.com/api/v2/customer.php?api=skills_detail&date_ini={{YYYYmmddHHiiss}}&date_end={{YYYYmmddHHiiss}} Description: This report identifies the number of evaluations per skill that users have managed, provides an overall average and a detailed evaluation for each of the 10 possible customizable questions in the smart survey. Benefit: Evaluate customer satisfaction by taking into account the particular performance of the agents that are part of a specific skill, since knowing the voice of the customer will allow you to act in a timely manner. how it works:
  • The consumption of this API is done by GET method.
  • To consume this API you must replace in the url {{{wolkvox_server}} by the nomenclature of the server of the operation.
  • The wolkvox-token header must be used to make use of the authorization token.
  • Note that the same token cannot be consumed simultaneously, so you can schedule the next API to be consumed when the result of the previous one is successful.
  • In terms of time, to keep track of your operation you can make a consumption every 5 minutes of the information.
REQUEST
NAME DESCRIPTION TYPE
api API required String
date_ini Initial Date (YYYYmmddHHiiss) String
date_end Final Date (YYYYmmddHHiiss) String
RESPONSE
NAME DESCRIPTION TYPE
operation Indicates the name of the operation String
conn_id Corresponds to the call identification number String
type_call Call type (inbound, outbound and internal) String
date Indicates the date in year-month -day -time format String
agent_id Refers to the numerical identification of each wolkvox Agent user. String
agent_name Agent’s name String
skill_id It is the numerical identification of the skill String
wait_time Indicates the waiting time in seconds String
calls_ans_10 Indicates calls that were answered within 10 seconds String
calls_ans_20 Indicates calls that were answered within 20 seconds String
calls_ans_30 Indicates calls that were answered within 30 seconds String
calls_ans_40 Indicates calls that were answered within 40 seconds String
calls_ans_50 Indicates calls that were answered within 50 seconds String
skill_result Indicates the result String
ani It is the telephone number from which the inbound call originates (Atomatic Number Identification). String
dnis Identifies the telephone number dialed by the customer String
Posibles códigos de respuesta
				
					$curl = curl_init();
 
curl_setopt_array($curl, array(
  CURLOPT_URL =&gt; 'https://wv{{wolkvox_server}}.wolkvox.com/api/v2/customer.php?api=skills_detail&amp;date_ini={{YYYYmmddHHiiss}}&amp;date_end={{YYYYmmddHHiiss}}',
  CURLOPT_RETURNTRANSFER =&gt; true,
  CURLOPT_ENCODING =&gt; '',
  CURLOPT_MAXREDIRS =&gt; 10,
  CURLOPT_TIMEOUT =&gt; 0,
  CURLOPT_FOLLOWLOCATION =&gt; true,
  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =&gt; 'GET',
  CURLOPT_HTTPHEADER =&gt; array(
    'wolkvox-token: {{token}}'
  ),
));
 
$response = curl_exec($curl);
 
curl_close($curl);
echo $response;
				
			

RESPONSE

				
					{
    "code": 200,
    "error": null,
    "msg": "1 records were found",
    "data": [
        {
            "operation": "",
            "conn_id": "",
            "type_call": "",
            "date": "",
            "agent_id": "",
            "agent_name": "",
            "skill_id": "",
            "wait_time": "",
            "calls_ans_10": "",
            "calls_ans_20": "",
            "calls_ans_30": "",
            "calls_ans_40": "",
            "calls_ans_50": "",
            "skill_result": "",
            "ani": "",
            "dnis": ""
        }
    ]
}

				
			

Hacemos uso de cookies, si continúas navegando asumiremos que estás de acuerdo. Puede leer más sobre el uso de cookies en nuestras políticas de privacidad y tratamiento de datos personales

Hacemos uso de cookies, si continúas navegando asumiremos que estás de acuerdo. Puede leer más sobre el uso de cookies en nuestras políticas de privacidad y tratamiento de datos personales