Manage saved WhatsApp reply shortcuts for your Vobiz support agents - reusable message snippets triggered by a /shortcut command in the inbox.
curl --request GET \
--url https://api.example.com/v1/messaging/canned-responsesDocumentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
/greeting and the pre-saved content is automatically inserted into the reply box.X-Auth-ID, X-Auth-Token, Accept: application/json
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/messaging/canned-responses | List all canned responses |
POST | /v1/messaging/canned-responses | Create a canned response |
DELETE | /v1/messaging/canned-responses/{id} | Delete a canned response |
GET https://api.vobiz.ai/v1/messaging/canned-responses
curl -X GET \
"https://api.vobiz.ai/v1/messaging/canned-responses" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}"
{
"data": [
{"id":"cr_001","shortcut":"/greeting","content":"Hello! Thank you for reaching out. How can I help you today?","created_at":"2026-03-01T10:00:00Z"},
{"id":"cr_002","shortcut":"/hours","content":"Our support hours are Monday–Friday, 9am–6pm IST.","created_at":"2026-03-02T11:00:00Z"}
]
}
POST https://api.vobiz.ai/v1/messaging/canned-responses
shortcut is the trigger agents type in the inbox. The content is the full text inserted.
| Field | Required | Description |
|---|---|---|
shortcut | Yes | Trigger keyword (e.g. /greeting) |
content | Yes | Full text of the canned reply |
curl -X POST \
"https://api.vobiz.ai/v1/messaging/canned-responses" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}" \
-H "Content-Type: application/json" \
-d '{"shortcut":"/greeting","content":"Hello! Thank you for reaching out. How can I help you today?"}'
DELETE https://api.vobiz.ai/v1/messaging/canned-responses/{canned_response_id}
curl -X DELETE \
"https://api.vobiz.ai/v1/messaging/canned-responses/{canned_response_id}" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}"
// Empty body on success
Was this page helpful?
curl --request GET \
--url https://api.example.com/v1/messaging/canned-responses