JSON API » bulk » bulk/destinations/update

Updates bulk campaign destinations.

Input parameters

Requires authentication and the user role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
campaignIntegerID of campaign.Yes
statusStringThe status to set. "cancelled", "failed", "pending", or "success".Yes
allInteger1 to update all destinations in campaign, 0 to update only those specified by dnumbers.No0
dnumbersStringDestinations. If multiple, separate with commas.Yes if all=0.Empty string.
validationInteger1 to validate input then return, 0 for full action.No0

Either all=1 or dnumbers must be specified.

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 updated.

Example: With one destination

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

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

Example: With two destinations

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

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

Example: All destinations

http://enswitch.example.com/api/json/bulk/destinations/update/?auth_username=user;auth_password=password;campaign=123;all=1;status=success

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

Change history

VersionChanges
3.13Function added.