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.
Production URL
http://api.mybankone.com/BankOneWebAPI/api/Messaging/SaveBulkSms/version?authToken={{auth_token}}
Staging URL
Here is an example request with sample payload to the staging endpoint.
POST
http://staging.mybankone.com/BankOneWebAPI/api/Messaging/SaveBulkSms
Path Parameters
version*
Int
Current API version
Query Parameters
authToken*
String
Authentication code for this request
Request Body
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