Adding phone numbers from CRM systems
The following Calls API methods are simplified methods for adding a single phone number to the call campaign:
GET /api/crmCalls/campaign/{token}/addPhone
POST /api/crmCalls/campaign/{token}/addPhone
GET /api/crmCalls/campaign/{token}/test/addPhone
In contrast to the main method for adding phone numbers to the campaign, POST /addPhones
, they accept parameters in the URL string rather than in the request body, and the number of supported parameters is limited.
Request parameters
You can pass the following call job settings as request URL parameters:
phone
— the phone number to be called, required parameter.gmtZone
— the customer time zone, optional parameter.
POST /addPhones
apply to the time zone format.All other parameters are interpreted as payload
, i.e. arbitrary additional data. The object with this data is available from the bot script via $dialer.getPayload
.
Redundant numbers in call campaigns
Repeated calls to the same number are ignored if you use the following methods:
GET /api/crmCalls/campaign/{token}/addPhone
POST /api/crmCalls/campaign/{token}/addPhone
You can find more information about these restrictions in the main article.
If you need to make a call again (for example, to test a call campaign), use the GET /api/crmCalls/campaign/{token}/test/addPhone
method.
Example request
curl 'https://platform.tovie.ai/api/crmCalls/campaign/8231.7056.1b131df1/addPhone?phone=16500000000&gmtZone=-05:30&name=Alex'
The response to this request will be a string containing the created call job ID.