v1

latestOpenAPI 3.0.32026-07-246376162.1 KB
Messaging

Get canned message

Returns detailed information about a specific canned message.

get/api/v4/messaging/canned_messages/{canned_message_id}

Path parameters

canned_message_idinteger required
Example:1

The unique identifier of the canned message.

Response

OK

Example response

{
  "canned_message": {
    "id": 10,
    "name": "Payment Confirmation",
    "body": "Thank you for your payment of {{amount}}.",
    "channels": [
      "sms",
      "whatsapp",
      "telegram"
    ],
    "teams": [
      {
        "id": 3,
        "name": "Multilingual Support"
      }
    ],
    "created_at": "2026-01-15T10:30:00.123000Z",
    "updated_at": "2026-01-20T14:15:00.456000Z"
  }
}