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

< / >

APIs Reports Manager

7. NLP Detail

URL:

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

Description:

This report delivers in detail a report about the use of NLP or artificial intelligence components in your operation.

Benefit:

With this report you can know in detail your use of artificial intelligence components in your operation.

How it works:

  • The consumption of this API is done by GET method.
  • To consume this API you must replace in the url {ip_ipdialbox} by the operation’s server nomenclature and the {token} generated from wolkvox Manager to obtain the information in a secure way.
  • 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 Type of report required String
date_ini Initial Date (YYYYmmddHHiiss) String
date_end Final Date (YYYYmmddHHiiss) String

RESPONSE

NAME DESCRIPTION TYPE
code Error code. Int
error Name of error. String
msg Explanation of error. String
data Indicates the date in year-month-day-time format. String
nlp type

Displays the type of NLP used in the record. This field can yield the following values:

– nlp-MrWizard-rtvoice (real-time analysis by Mr. Wizard in voice channels).
– nlp-voice-keywords (keyword analysis in voice channels).
– nlp-voice-sentiment (sentiment analysis in voice channels).
– nlp-voice-summary (summaries in voice channels).
– nlp-MrWizard-voice (Mr. Wizard analysis in voice channels).
– nlp-text-keywords (keyword analysis in chat).
– nlp-text-summary (summaries in chat channels).
– nlp-voc-autoqa (customer voice analysis with Auto QA).
– nlp-classifications (AI-powered intentions component).
– nlp-text-sentiment (sentiment analysis in chat channels).
– nlp-voc-general (customer voice analysis with General NLP component).
– nlp-voc-autoqua-test (customer voice analysis in AutoQAiBot tests).
– nlp-MrWizard-chat (Mr. Wizard analysis in chat channels).
– nlp-Q&A (NLP Q&A questions and answers component).
– unknown (when the system fails to identify the NLP type).

String
nlp channel

Displays the type of channel through which the activity originated. The value obtained depends on the result obtained in the “type_nlp” field:

– “chat-web”, “chat-whatsapp”, and “voice” for the result nlp-voc-autoqua.
– “configurationbox-bot:RoutingPointID-ani:CustomerNumber”, “instagram-bot:RoutingPointID-ani:”, “facebook-bot:RoutingPointID-ani:”, “web-bot:RoutingPointID-ani:CustomerNumber”, “whatsapp-bot:RoutingPointID-ani:ANI Obtained” and “unknown” for the unknown result.
– “idagent:AgentID” for the results nlp-MrWizard-, nlp-MrWizard-chat, and nlp-MrWizard-voice.
– “keywords-chat-chat_id:ChatID” for the result nlp-text-keywords.
– “keywords-voice-idcall:CallID” for the result nlp-voice-keywords.
– “sentiment-chat-chatid:ChatID” for the result nlp-text-sentiment.
– “sentiment-voice-idcall:CallID” for the result nlp-voice-sentiment.
– “summary-chat-chatid:ChatID” for the result nlp-text-summary.
– “summary-voice-idcall:CallID” for the result nlp-voice-summary.
– “Test-QAutoQAiBot” for the result nlp-voc-autoqa-test.
– “voc-id:VocID” for the result nlp-voc-general.
– “voice” for nlp-MrWizard-rtvoice.

String
chars send Indicates the number of characters sent. String
chars answer Indicates the number of characters received. String
total chars This is the column that indicates the total number of characters, i.e., the sum of characters sent plus those received. String
date nlp Displays the date on which the record occurred. 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=cdr_7&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: {{wolkvox_token}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
				
			

RESPONSE

				
					{
    "code": " ",
    "error": ,
    "msg": " ",
    "data": [
        {
            "nlp type": " ",
            "nlp channel": " ",
            "chars send": " ",
            "chars answer": " ",
            "total chars": " ",
            "date nlp": " "
        }
    ]
}
				
			
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