GET
/
api
/
email_templates
curl --request GET \
  --url https://app.herondata.io/api/email_templates \
  --header 'Authorization: Basic <encoded-value>'
{
  "rules": [
    {
      "cc_address": null,
      "heron_id": "<string>",
      "html_body": "<string>",
      "name": "<string>",
      "reply_to_address": null,
      "to_address": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
OK
rules
object[]