FastKYC SMS
  1. Senders
FastKYC SMS
  • Access Token
  • API Rate Limiting
  • SMS Messaging
    • Senders
      • Get Sender
        GET
      • Add Sender
        POST
      • Update Sender
        PATCH
    • Templates
      • Get Templates
      • Add Template
      • Update Template
    • Messages
      • Send Message
      • Send Batch Messages
      • Message Status
  • 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. Senders

Update Sender

PATCH
https://sms.fastkyc.in/v1/sms/senders
This endpoint allows you to update a specific sender ID using the HTTP PATCH method under your account.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Validation Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://sms.fastkyc.in/v1/sms/senders' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
        {
            "sender": "PQRST",
            "isoCode": "IN",
            "service": "T",
            "entity_id": "100164421522312XXXX",
            "entity_name": "Company Legal Name"
        }
    ]
}'
Response Response Example
200 - Success
{
  "message": "Senders updated successfully",
  "error": {}
}
Modified at 2025-06-10 19:36:55
Previous
Add Sender
Next
Get Templates
Built with