fbpx

< / >

APIs Reports Manager

10. Official WhatsApp Billing En

URL:

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

Description:

This report allows you to know the consumption of the WhatsApp Business line service taking into account the chat identification, date, phone and the use of templates. This report does not allow to consult the cost of use.

Benefit:

This report allows you to identify if the interaction is inbound or outbound through the use of HSM templates and verify the Resolution in First Contact through this channel.

How it works:

  • This API consumption is done by GET method.
  • To consume this API you must replace in the url {{wolkvox_server}} by the nomenclature of the operation server.
  • You must use the wolkvoxtoken header to use the authorization token.
  • Keep in mind 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.

NAMEDESCRIPTIONTYPE
apiType of report requiredString
date_iniInitial Date (YYYYmmddHHiiss)String
date_endFinal Date (YYYYmmddHHiiss)String
destinationCountry to which WhatsApp is sentString

NAMEDESCRIPTIONTYPE
conn_idCorresponds to the call identification numberString
session_idIdentifier of client vs channel and/or connectorString
dateIndicates the date in the format yearmonthdayhourString
customer_phoneRefers to the customer‘s phone numberString
templateIndicates if there was use of a template (no/yes)String
destiny Indicates the destination of the callString

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=chat_10&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": "1 records were found",
    "data": [
        {
            "conn_id": "",
            "session_id": "",
            "date": "",
            "customer_phone": "",
            "template": ""
        }
    ]
}
				
			
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