Qikberry API Docs
SMSRCS Business Messaging
SMSRCS Business Messaging
Qikberry.AI
App
  1. Templates
  • 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. Templates

Add Template

POST
https://rest.qikberry.ai/v1/sms/templates
This endpoint allows you to create a new SMS template by sending an HTTP POST request under your account.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://rest.qikberry.ai/v1/sms/templates' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": [
               {
            "sender": "QBERRY",
            "template_id": "110716666831649XXXX",
            "content": "Onetime Password(OTP) for your request is {{otp}}.PLS DO NOT SHARE WITH ANYONE. - Qikberry",
            "service": "SE",
            "name":"offer_template"
        }
       ]
}'
Response Response Example
200 - Success
{
    "message": "Templates added 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 {6}] 
required
sender
string 
required
Length must be 4 or 6, Only alphabets and numbers are allowed.
Examples:
QBERRYQKSHOP
template_id
string 
required
Only numbers are allowed
>= 15 characters<= 25 characters
Example:
110716666831649XXXX
Match pattern:
/^[0-9]*$/
content
string 
required
Maximum 4000 characters are allowed
<= 4000 characters
service
string 
required
Pass service code. Allowed values: T, P, SI, SE
Examples:
TPSISE
name
string 
required
Only alphabets and numbers and space are allowed
>= 5 characters<= 20 characters
Example:
offer_template
Match pattern:
/^[0-9a-zA-Z_ ]*$/
unicode
string 
optional
Unicode dection automated
Examples

Responses

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