Stand Alone Card
POST
https://rest.qikberry.ai/v1/rcs/messages
B. Title text
C. Description text
D. Suggested replies and actions.
Rich cards components
Rich cards can include various media such as images, GIFs, and videos.
The title of a rich card acts like a headline designed to capture the user's attention and quickly convey the purpose of your message. Keep it concise, informative and within 200 characters.
The rich card description provides essential supporting information. It expands on the title, highlights key benefits, and encourages user action with a clear call to action. Descriptions can be up to 2,000 characters in length.
Suggested replies help users interact with your agent in ways that it can easily respond to. Suggested replies can be up to 25 characters long.

Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://rest.qikberry.ai/v1/rcs/messages' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
"to": "<MOBILE>",
"agentID": "<AGENT_ID>",
"message": {
"templateId": "<TEMPLATE_ID>",
"templateParams": {
"media": {
"contentInfo": {
"fileUrl": "<FILE_URL>",
"fileName": "<FILE_TYPE>",
"mimeType": "<MIME_TYPE>"
}
}
}
}
}'
Response Response Example
200 - Success
{
"message": "1 numbers accepted",
"data": [
{
"messageId": "a8XXXXXX-1bXX-4XXd-b5XX-5dXXXXXX:1",
"mobile": "+9198XXXXXXXXX",
"charges": 0.05
}
]
}
Request
Header Params
Authorization
string
required
Example:
Bearer <ACCESS_TOKEN>
Content-Type
string
required
Example:
application/json
Body Params application/json