GET
/
api
/
canned-replies
Get Automated Replies
curl --request GET \
  --url https://app.sentsays.com/api/canned-replies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 2,
      "uuid": "f8abb450-9ff5-460c-a194-99e30c67c019",
      "organization_id": 13,
      "name": "About Us",
      "trigger": "what do you do?",
      "match_criteria": "contains",
      "metadata": "{\"type\":\"text\",\"data\":{\"text\":\"We sell premium quality shoes for all occasions. Visit our store for the latest collection!\"}}",
      "created_by": 4,
      "deleted_by": null,
      "deleted_at": null,
      "created_at": "2025-06-08T04:02:28Z",
      "updated_at": "2025-06-08T04:02:28Z"
    }
  ],
  "links": {
    "first": "https://api.sentsays.com/api/contacts?page=1",
    "last": "https://api.sentsays.com/api/contacts?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "https://api.sentsays.com/api/contacts",
    "per_page": 10,
    "to": 1,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Query Parameters

page
integer
default:1

Page number for pagination

Example:

1

per_page
integer
default:10

Number of automated replies per page

Example:

10

Response

200
application/json

Successful response with automated replies list

The response is of type object.