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
  • Webhooks
    • Receiving Status via Webhook
  1. Templates

Get Templates

GET
https://rest.qikberry.ai/v1/sms/templates
This endpoint makes an HTTP GET request to retrieve a list of SMS templates created under your account. The response will include information about the SMS templates, such as their names, IDs, and other relevant details.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://rest.qikberry.ai/v1/sms/templates' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json'
Response Response Example
200 - Success
{
    "message": "Retrieved Template details successfully",
    "data": [
        {
            "uuid": "1b3915a2-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
            "sender": "QIKBRY",
            "name": "Diwali Message",
            "content": "Celebrate Diwali with Qikberry.ai! Enjoy exclusive discounts on our WhatsApp AI solutions this festive season. Illuminate your business with innovative technology and boost your productivity. Visit our website Qikberry.ai or contact us today! Wishing you a prosperous Diwali!",
            "service": "SE",
            "template_id": "1707xxx90590118xxxx",
            "status": "APPROVED"
        }
    ],
    "page": 1,
    "length": 1
}

Request

Header Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
Modified at 2025-06-26 11:55:23
Previous
Update Sender
Next
Add Template
Built with