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 https://app.aimylogic.com/api/crmCalls/campaign/{token}/addPhone
POST https://app.aimylogic.com/api/crmCalls/campaign/{token}/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.
tip
These methods are primarily intended for integrating Aimylogic calls with CRM systems, such as Bitrix24.
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.
tip
The same restrictions as in
POST /addPhones
apply to the time zone format.Example request
curl --request POST 'https://app.aimylogic.com/api/crmCalls/campaign/8231.7056.1b131df1/addPhone?phone=79123456789&gmtZone=+03:30&name=Alex' \
--header 'Content-Type: application/x-www-form-urlencoded'
The response to this request will be a string containing the created call job ID.