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

Get Sender

GET
https://sms.fastkyc.in/v1/sms/senders
This endpoint retrieves a list of senders, including sender ID, name, and status.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sms.fastkyc.in/v1/sms/senders' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json'
Response Response Example
200 - Success
{
    "message": "Retrieved Sender details successfully",
    "data": [
        {
            "sender": "FASTKYC",
            "service": "T",
            "iso_code": "IN",
            "entity_id": "100164421522312XXXX",
            "entity_name": "Company Legal Name",
            "status": "APPROVED"
        }
    ],
    "page": 1,
    "length": 1
}
Modified at 2025-06-10 19:36:55
Previous
SMS Messaging
Next
Add Sender
Built with