From Bright Pattern Documentation
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
- Get updated records
- Get all records
- 1 Add records to DNC
- Replace records in DNC
List Management API Specification
Add records to DNC
Description | Adds new records to the specified Do Not Call (DNC) list. Returns the number of added records. Optional comments are inserted in comment field of geographic (postal) DNC record or campaign name field of internal DNC record. This method is supported for internal, geographic postal, area codes and record exclusion DNC lists. |
URL | http[s]://<host>:<port>/admin/ws/t/<tenant_url>/donotcalllist/add/<do_not_call_list_name> |
Method | POST |
Request body | Records to be added, without or with comments (content type: application/json). Example:
[ “123456789“, … “9999999999” ] or [ [ “123456789“, “optional comment”], … [“9999999999”, “optional comment”] ] |
Returns | 200 – Records added. |
Body | Number of added records (content type: application/json). Note that the number of added records may be different from the number of records in the request as any duplicates, if found, will be ignored. Example:
{ “added”:9999 } |
Errors | 400 – Bad request (incorrect format)
401 – Authentication failed 403 – Authentication succeeded, but authorization failed (no privileges) 404 – Do Not Call list is not found or url is invalid |