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

< / >

APIs Reports Manager

1. Agent time by state

URL:

https://wv{{wolkvox_server}}.wolkvox.com/api/v2/reports_manager.php?api=agent_1&date_ini={{YYYYmmddHHiiss}}&date_end={{YYYYmmddHHiiss}}

Description: This report provides a complete view of agent management by summarizing the advisor’s activity individually, indicating the total of managed calls (inbound/outbound/internal), the time used in each phase of customer service (ring time, ACW, and AHT), date and time of Log In/Log Out, in addition to the amount of hits and RPC.

Type of request: GET

How it works:

  • This API is consumed by GET method.
  • To consume this API, you must replace {{wolkvox_server}} in the URL with the nomenclature of the operation server and {{token}} generated from Wolkvox Manager to obtain the information securely.
  • Please note that the same token cannot be consumed simultaneously, so you can program the next API to be consumed when the result of the previous one is successful.
  • In terms of time, to track your operation you can make a consumption every 5 minutes of the information.
  • Limit of records that can be downloaded per consumption: 60,000 records.
  • Limit of records that can be uploaded per consumption: 10,000 records.
  • Limit of days queried in dates: 31 days.
  • Limit of result weight: 256 MB.
  • API consumption time limit: 60 seconds.
  • Concurrent consumption limit of a token: 2 simultaneous requests.
  • Daily limit of tokens: Number of licenses multiplied by 1000 daily tokens.

Request

REQUEST
NAME DESCRIPTION TYPE
api Type of report required String
date_ini Initial Date (YYYYmmddHHiiss) String
date_end Final Date (YYYYmmddHHiiss) String
RESPONSE

Response

NAME DESCRIPTION TYPE
agent_id It is the numerical user that is assigned to each of the Wolkvox Agent users. String
agent_dni It is the identification document of each of the Wolkvox Agent users. String
agent_name It is the name that is assigned to each of the Wolkvox Agent users. String
calls Indicates number of calls (inbound, outbound, and internal). String
inbound The number of incoming calls handled by the agent. String
outbound The number of outgoing calls handled by an agent. String
internal Refers to calls handled within the operation. String
ready_time It indicates the time the agent has remained in ready auxiliary state. String
Possible response codes
				
					$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://wv{{wolkvox_server}}.wolkvox.com/api/v2/reports_manager.php?api=agent_1&date_ini={{YYYYmmddHHiiss}}&date_end={{YYYYmmddHHiiss}}',
  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: {{token}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
				
			

RESPONSE

				
					{
    "code": 200,
    "error": null,
    "msg": "Information found for the current month",
    "data": [
        {
            "agent_id": "",
            "agent_dni": "",
            "agent_name": "",
            "calls": "",
            "inbound": "",
            "outbound": "",
            "internal": "",
            "ready_time": "",
            "inbound_time": "",
            "outbound_time": "",
            "acw_time": "",
            "ring_time": "",
            "login_time": "",
            "aht": "",
            "occupancy": "",
            "aux_time": "",
            "hits": "",
            "rpc": "",
            "aht_outbund": "",
            "aht_inbound": "",
            "login": "-",
            "logout": "-"
        }
    ]
}
				
			
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