Contents
- Introduction
- API Specification
- General Information
- Get campaigns
- Add a record
- Add a number of records
- Update a record
- Query a record
- Delete all records
- Get completed records
- 1 Get updated records
- Get all records
- Add records to DNC
- Replace records in DNC
Get updated records
Description | Returns records of the specified calling list that have had any activity within the specified campaign since the specified date and time. Time values are returned in the UTC time zone. |
URL | http[s]://<host>:<port>/admin/ws/t/
<tenant_url>/callinglist/getChanged/<list_name>/<campaign_name> |
Method | POST |
Request body | Initial time in ISO format and maximum size of returned list. Current implementation limits maximum size to 1000 records (content type: application/json). Example:
{ |
Returns | 200 – Content and detailed results of records updated within the specified campaign. |
Body | Content and details of call attempts of all records updated since the specified time (content type: application/json). The attempts part contains the attempts results in a format similar to the one used for detailed campaign result export. For more information, see ServicePattern Reporting Reference Guide, section Campaign Results. Attempts are sorted by time starting from the most recent one. Example:
{ “entry”: { } “completed”: false, “attempts”: [ |
Errors | 400 – Bad request (missing mandatory fields or incorrect format)
401 – Authentication failed 403 – Authentication succeeded, but authorization failed (no privileges) 404 – Calling list is not found or campaign is not found or url is invalid |