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 Message

POST
https://sms.fastkyc.in/v1/sms/messages
This endpoint enables to send a message to a specific number using an existing sender ID and template ID through an HTTP POST request.
Send message to multiple numbers

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' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "to": "+918072xxxxxx",
    "sender": "YESBNK",
    "service": "SI",
    "template_id": "120716993437302xxxx",
    "message": "Your one time password - OTP is {{1}} to sign in to your account"
}'
Response Response Example
200 - Success
{
    "message": "1 numbers accepted for delivery",
    "data": [
        {
            "message_id": "a1bd1b4d-xxxx-xxxx-xxxx-d21ed5d3xxxx:1",
            "mobile": "+918072xxxxxx",
            "message": "Your one time password - OTP is {{1}} to sign in to your account - Team Celebrare"
        }
    ]
}
Modified at 2025-06-10 19:36:55
Previous
Update Template
Next
Send Batch Messages
Built with