List Canned Responses

GET

/v1/canned_responses

Returns a paginated list of canned responses and macros with optional keyword and shortcut search filtering.

Parameters

NameTypeDescription
searchstringSearch query matching title, shortcut code, or content
pageintegerPage number
per_pageintegerRecords per page

Responses

200List of canned responses
{
  "data": [
    {
      "id": "can_88",
      "name": "Refund Policy",
      "identifier": "!refund",
      "content": "Our refund policy allows full returns within 30 days of purchase.",
      "created_at": "2026-08-01T12:00:00Z"
    }
  ],
  "meta": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 1
  }
}