We just started integrating Chatbase for one of our Bot's and I'm sending messages to Chatbase, but I'm not able to view messages for specific intents on the dashboard. The specific case pertains to messages which are related to dates.
Here is a curl request.
curl -X POST \
https://chatbase-area120.appspot.com/api/message \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-H 'postman-token: f82cc2de-4514-8055-c28e-8746fce002c9' \
-d '{
"api_key": "xxxxxxxx",
"type": "user",
"platform": "mobile",
"message":"19-06-2017",
"intent": "EndDate",
"version": "1.0",
"user_id": "user-26",
"time_stamp": "1515492147",
"not_handled": false
}'
This is the view in the dashboard.
Also, I find it strange that the messages for another intent show up correctly on the dashboard.
Is there a format in which date has to sent to Chatbase for it to be shown on the dashboard? By the way, this happens with other intents also which are related to mobile numbers, email, and address.