CcaWebAPI 5.4.9
Version 5.4.9.6 (29/10/2018)
- Support of quota reading in 5.4.9
Version 5.4.9.5 (09/10/2018)
- Limit the number of pending messages on signalR to reduce memory usage
Version 10.4.9.4 (30/07/2018)
- Raw report output was formatted using the server's locale
- Quota availability values were incorrect
Version 5.4.9.3 04/06/2018)
- Improved error handling when downloading a report's output
- Problem with downloading report JSON output if the report contains parameters
- Fix to handle non-array report parameters
- Clean up old connection when reconnecting to CcaAPI
Version 5.4.9.2 (20/04/2018)
- Changed type of ExternalCallId in CallDetails to string
- IMPORTANT CHANGE: New subscribe functions were added to fix some design flaws in the existing functions.
The existing functions are now deprecated, and will be removed in v5.4.10.- Changes to subscribe functions:
- Return value was added to indicate success/failure
- connectionId was removed from parameters (the value was available internally)
- New functions:
- Old:
void RegisterForObjectUpdates(string token, string connectionId, string subscriptionId, string objectType, string ids, string properties)
New:ResultCode SubscribeToObjectUpdateNotifications(string token, string subscriptionId, enum objectType, string ids, string properties) - Old:
void RegisterForObjectEvent(string token, string connectionId, string subscriptionId, string objectType, string ids, string eventName)
New:ResultCode SubscribeToObjectEventNotifications(string token, string subscriptionId, enum objectType, string ids, string eventName) - Old:
void RegisterForQuotaUpdates(string token, string connectionId, string subscriptionId, int taskId, int langId)
New:ResultCode SubscribeToQuotaUpdateNotifications(string token, string subscriptionId, long surveyId, int languageId) - Old:
void RegisterForCallEvents(string token, string connectionId, string subscriptionId, string agentIds)
New:ResultCode SubscribeToCallEventNotifications(string token, string subscriptionId, string agentIds)
- Old:
- Changes to subscribe functions:
- Unsubscribe functions were added
ResultCode UnsubscribeFromObjectUpdateNotifications(string token, string subscriptionId)ResultCode UnsubscribeFromObjectEventNotifications(string token, string subscriptionId)ResultCode UnsubscribeFromQuotaUpdateNotifications(string token, string subscriptionId)ResultCode UnsubscribeFromCallEventNotifications(string token, string subscriptionId)
- See-in not working