Create Account
Recent search
Product-Campaigns- Lists
Advanced Search
235 results found
Receive RCS Incoming Message
API
RCS Status Callback
Send RCS Template Message
Receive Outbound Call Notifications
WhatsApp Error Code
Please use ‘Create Account’ to quickly register and start exploring our APIs
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists Copy
This API allows you to create one or more new lists. A list name has to be unique within an account.
The Lists created using this API can only be used within Call Campaigns.
name (Mandatory)- Name of list (unique within an account)
tag (optional)- tag value for the list
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists/<listSid>/contacts Copy
This API allows you to add contacts within an already created list. The contacts should already exists in Campaigns or should be created using Create Contacts API.
This is a bulk API which supports maximum of 5000 contacts in one request.
ListSid
Mention contactsids you want to add to the list
“contact references”: [
“contact_sid”: <value>
“contact_sid”:<value>….
]
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/contacts/csv-upload Copy
This API allows you to add new contacts in a list using a CSV. The CSV must be present in local to the client triggering the API. The API uploads the contacts in asynchronous manner. The status of upload, at any point of time, can be fetched by hitting the URL (present in summary section of the API response).
Maximum of 1 Lakh contacts can be added in a list using this API. If the list already exists and has contacts, then it can allow addition of new contacts only up till maximum of 1 Lakh.
CSV should contain ‘number’ (in E.164 format) as a mandatory column, while other optional columns are: first_name, last_name, company_name, email & tag. Custom field is not allowed to be added against contacts, in this method. The contact parameters can be referred from the API ‘Create Contacts‘.
list_name (Mandatory)- The list name in which the new contacts will be added
file_name (Mandatory)- The local path of the file which will be used to upload the contacts.
type (Optional)- static/dynamic. Default is static.
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/csv-status/<upload_id> Copy
The status of CSV upload can be checked in real-time using the ‘summary:url’ in the above response as a GET API. The response of this request will show the overall status and stats of contacts being uploaded.
upload_id
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists/<listSid> Copy
This API allows you to update the name or tag of a list.
listsid
you can update name and tag of the list
This API allows you update name and tag of multiple lists.
It’s a bulk API and which supports 5000 lists in one request.
Provide bulk details of sid (mandatory) and the parameters (name and tag) you want to update along with their values.
“lists”: [
{“sid”:<value>},
{“sid”:<value>}……
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists/<list_id> Copy
This API allows you to delete an existing list from the Campaign address-book.
Replace <id> with the listSid
This API allows you to fetch details of an existing list using list_ID.
listSid
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists?limit=<limit>&offset=<offset> Copy
This API allows you get details of lists within an account. This API also allows you to search a particular list by list name and also sort the fetched response by name or date created.
It’s a bulk API which which works with offset & limit parameters to fetch specific set of data.
offset (optional)- This is the position in the dataset of a particular record. By specifying offset, you retrieve a subset of records starting with the offset value. Offset is zero-based i.e. the 10th record is at offset 9
limit(optional)- number of records on single page default:20
name (optional)-Search on lists name
sort_by (optional)- This indicates in what order the lists records are sorted in the API response. By default records are sorted by DateCreated in ascending order. However, you can override the same in following way for ascending order: Eg: date_created:asc or name:asc
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists/<list_id>/contacts?offset=<offset_num>&limit=<limit_num> Copy
This API allows you to fetch all contacts within a list.
It is a Bulk API and supports limit and offset based pagination.
offset (optional)- By specifying offset, you retrieve a subset of records starting with the offset value. Offset is zero-based i.e. the 10th record is at offset 9
limit(optional)- number of records on single page default:20 maximum=500
https://<your_api_key>:<your_api_token><subdomain>/v2/accounts/<your_sid>/lists/<list_sid>/contacts/<contact_sid> Copy
contactSid