Save Bulk SMS

This sends bulk SMS to an institution customers.

To send bulk SMS you first need to build the complete save bulk SMS URL by passing version in the path and authToken to the url params and then making a post request with AccountNumber, To, AccountId, Body and ReferenceNo in the request body as an array of objects.

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/Messaging/SaveBulkSms/version?authToken={{auth_token}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Messaging/SaveBulkSms/version?authToken={{auth_token}}

Here is an example request with sample payload to the staging endpoint.

POST http://staging.mybankone.com/BankOneWebAPI/api/Messaging/SaveBulkSms

Path Parameters

Name
Type
Description

version*

Int

Current API version

Query Parameters

Name
Type
Description

authToken*

String

Authentication code for this request

Request Body

Name
Type
Description

AccountNumber*

String

Customer's account number

To*

String

Customer's phone number

AccountId*

String

Customer's account ID

ReferenceNo*

String

Customer's reference number

{
    // Response
}

Last updated