Qikberry API Docs
SMSRCS Business MessagingVMN MessagingVerify
SMSRCS Business MessagingVMN MessagingVerify
Qikberry.AI
App
  1. Messages
  • Senders
    • Get Sender
      GET
    • Add Sender
      POST
    • Update Sender
      PATCH
  • Templates
    • Get Templates
      GET
    • Add Template
      POST
    • Update Template
      PATCH
  • Messages
    • Send Message
      POST
    • Send Batch Messages
      POST
    • Message Status
      GET
  • Webhooks
    • Receiving Status via Webhook
SMSRCS Business MessagingVMN MessagingVerify
SMSRCS Business MessagingVMN MessagingVerify
Qikberry.AI
App
  1. Messages

Send Batch Messages

POST
https://rest.qikberry.ai/v1/sms/messages/batch
This endpoint allows to send a message to a different number using an existing sender ID, while maintaining the same content but with different variable values, via an HTTP POST request.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Validation errors
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://rest.qikberry.ai/v1/sms/messages/batch' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "sender": "YESBNK",
    "template_id":"120716993437302xxxx",
    "service": "T",
    "data": [
        {
            "to": "+918080808080",
            "message": "Your one time password - OTP is {{1}} to sign in to your account"
        },
        {
            "to": "+918080808081",
            "message": "Your one time password - OTP is {{1}} to sign in to your account"
        }
    ]
}'
Response Response Example
200 - Success
{
    "message": "2 numbers accepted for delivery",
    "data": [
        {
            "message_id": "0a306f3c-xxxx-xxxx-xxxx-182715daxxxx:1",
            "mobile": "+918080808080",
            "message": "As per your request Your one time password(OTP) to register your new mobile number 12345 in our record is test1 Kindly share this OTP to our RO/ BRM only at our branch for registering the same with Muthoot Microfin Ltd"
        },
        {
            "message_id": "0a306f3c-xxxx-xxxx-xxxx-182715daxxxx:2",
            "mobile": "+918080808081",
            "message": "As per your request Your one time password(OTP) to register your new mobile number 67890 in our record is test2 Kindly share this OTP to our RO/ BRM only at our branch for registering the same with Muthoot Microfin Ltd"
        }
    ]
}
Modified at 2025-06-26 11:59:05
Previous
Send Message
Next
Message Status
Built with