JSON API » bulk » bulk/destinations/create

Adds new destinations to a bulk campaign. Any matching existing destinations are replaced.

Input parameters

Requires authentication and the user role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
campaignIntegerID of campaign.Yes
dnumbersStringDestinations. If multiple, separate with commas.Yes
statusStringThe initial status of the destinations. "cancelled", "failed", "pending", or "success".No"pending"
validationInteger1 to validate input then return, 0 for full action.No0

Responses

CodeDescription
200Success.
201Input passed validation. Only returned if validation=1.
400Invalid input parameters specified. Check the key and message fields for more details.
401The authentication details provided are invalid.
402Your role does not allow this.
404The campaign does not exist, or you do not have permission to update it.

Data returned

The number of destinations added or replaced.

Example: With required parameters

http://enswitch.example.com/api/json/bulk/destinations/create/?auth_username=user;auth_password=password;campaign=123;dnumbers=2125551234

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":{ "count":1 } }

Example: With two destinations

http://enswitch.example.com/api/json/bulk/destinations/create/?auth_username=user;auth_password=password;campaign=123;dnumbers=2125551234,2125551235

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":{ "count":2 } }

Change history

VersionChanges
3.13Function added.