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
      • Send Batch Messages
      • Message Status
  • RCS Business Messaging
    • RCS Introduction
    • Messages Support
    • Messages
      • Text
        POST
      • Media
        POST
      • Text Suggestions
        POST
      • Stand Alone Card
        POST
      • Carousel Card
        POST
    • 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

Text

POST
https://rest.FastKYC/v1/rcs/messages
Text messages are best suited to communicate information without the need for visuals, complex interaction, or response.

Supported Features#

Plain text up to 2,000 characters
Basic line breaks (\n)
Unicode character support

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://rest.FastKYC/v1/rcs/messages' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "to": "<MOBILE>",
    "agentID": "<AGENT_ID>",
    "message": {
        "templateId": "<TEMPLATE_ID>"
    }
}'
Response Response Example
200 - Success
{
    "message": "1 numbers accepted",
    "data": [
        {
            "messageId": "a8XXXXXX-1bXX-4XXd-b5XX-5dXXXXXX:1",
            "mobile": "+9198XXXXXXXXX",
            "charges": 0.05
        }
    ]
}
Modified at 2025-06-10 19:36:55
Previous
Messages Support
Next
Media
Built with