FastKYC SMS
  1. Messages
FastKYC SMS
  • Access Token
  • API Rate Limiting
  • SMS Messaging
    • Senders
      • Get Sender
      • Add Sender
      • Update Sender
    • Templates
      • Get Templates
      • Add Template
      • Update Template
    • Messages
      • Send Message
        POST
      • Send Batch Messages
        POST
      • Message Status
        GET
  • RCS Business Messaging
    • RCS Introduction
    • Messages Support
    • Messages
      • Text
      • Media
      • Text Suggestions
      • Stand Alone Card
      • Carousel Card
    • Webhooks
      • Receiving Messages via Webhook
    • Help and Support
      • Getting Help: FAQs
  • Schemas
    • SMS
      • SenderId Model
      • Templates Model
      • SenderId
      • Templates
      • Message
    • WhatsApp
      • Sent Messages Response
  1. Messages

Send Batch Messages

POST
https://sms.fastkyc.in/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://sms.fastkyc.in/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-10 19:36:55
Previous
Send Message
Next
Message Status
Built with