Qikberry API Docs
SMSRCS Business Messaging
SMSRCS Business Messaging
Qikberry.AI
App
  1. Senders
  • Senders
    • Get Sender
      GET
    • Add Sender
      POST
    • Update Sender
      PATCH
  • Templates
    • Get Templates
      GET
    • Add Template
      POST
    • Update Template
      PATCH
  • Messages
    • Send Message
      POST
    • Send Batch Messages
      POST
    • Message Status
      GET
  1. Senders

Update Sender

PATCH
https://rest.qikberry.ai/v1/sms/senders
This endpoint allows you to update a specific sender ID using the HTTP PATCH method under your account.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://rest.qikberry.ai/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": {}
}

Request

Header Params
Authorization
string 
required
Pass access token
Example:
Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Content-Type
string 
required
Example:
application/json
Body Params application/json
data
array [object {5}] 
required
sender
string 
required
Length must between 4 to 6, Only alphabets and numbers are allowed.
service
string 
optional
Pass service code
entity_id
string 
optional
Length must between 10 to 25 & only numbers are allowed.
entity_name
string 
optional
Length must between 5 to 50 & only alphabets and numbers are allowed.
iso_code
string 
optional
Country Code
Default:
IN
Example:
For India pass IN
Examples

Responses

🟢200Success
application/json
Body
message
string 
required
error
object 
required
🟠400Validation Error
Previous
Add Sender
Next
Get Templates
Built with