The module has been designed to get data for In-Chat survey entered by visitor. The Service URL of the module is given by the mentioned link-
https://www.enterice.com/external/icedataapi/api/chat/get_inchat_survey_data
- Json Formats-
- Code snippet for Web Service API-
GET_INCHAT_SURVEY_DATA
{
‘Token’: ‘34gdf6754y3444’
‘FromDateTime’:’2017-07-01′,
‘ToDateTime’:’2018-07-31 23:59:59′,
‘TimeZoneOffset’:-240,
‘SkillID’:822
}
2. Description for Request Parameter-
Request Parameters |
Notes |
||||||||||||||||||||||||||||||||||
Token | string | Authentication Token | |||||||||||||||||||||||||||||||||
FromDateTime | string | From Date and Time | |||||||||||||||||||||||||||||||||
ToDateTime | string | To Date and Time | |||||||||||||||||||||||||||||||||
TimeZoneOffset | integer | Time zone offset of specific time zone |
|
||||||||||||||||||||||||||||||||
SkillID | integer | Campaign id |
3. Response Example-
Success:
{
“In-chatSurveyData”: [
{
“ChatID”: 1111,
“AgentName”: “John”,
“How would you rate our services”: 10,
“Comments”: “Awesome”
},
{
“ChatID”: 1112,
“AgentName”: “John”,
“How would you rate our services”: 10,
“Comments”: “Awesome”
}
]
}
Fail:
{ “Status”: “ false”,
“Message”: “as above.”,
“Error”: “as above”
}