Returns the survey results of the chats based on the date and/or calldata variables specified.
Status | ||||
---|---|---|---|---|
|
Path Variables:
Name | Mandatory | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
domain |
|
| Unique domain identifier |
Authorization: see Authentication mechanisms
Request Body:
Type:
Status | ||
---|---|---|
|
Name | Mandatory | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
lt |
|
| Epoch Unix Timestamp before (read <) which chats are searched for (based on the beginTime field) | ||||||||
gt |
|
| Epoch Unix Timestamp after (read >) which chats are searched for (based on the beginTime field) | ||||||||
calldata |
|
| calldata variable with which chats are searched for |
Example:
Request
http://<hostname>:<port>/livechat/default/getSurveyResultsByDateCalldata
...
Code Block | ||
---|---|---|
| ||
{ "gt": 1709039127067, "calldata": { "EC_MACROACTIVITY" : "DEFAULT_CHAT", "EC_CAMPAIGN" : "DEFAULT_CHAT_MKT" } } |
Code Block | ||
---|---|---|
| ||
{ "lt": 1714119031667, "gt": 1709039127067, "calldata": { "EC_MACROACTIVITY" : "DEFAULT_CHAT", "EC_CAMPAIGN" : "DEFAULT_CHAT_MKT" } } |
...