Show Developer Menu

GET /response_templates

Issuing a GET call to response_templates will allow you to retrieve Response Templates for the Brand. This will also return personal Response Templates depending on the user role.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/response_templates' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "response_templates": [
    {
      "id": 123,
      "name": "Returns Instructions",
      "body": "...",
      "response_template_group": {
        "id": 123,
        "name": "Returns"
      }
    }
    ...
  ]
}
Optional Params
  • q with any string will search over response templates by keywords.
  • page with any number will allow you to paginate through results.