GET
/
businesses
/
{id}
/
email_templates
curl --request GET \
  --url https://api.pocketflows.com/businesses/{id}/email_templates \
  --header 'Authorization: Basic <encoded-value>'
{
  "email_templates": [
    {
      "id": "<string>",
      "name": "<string>",
      "subject": "<string>",
      "body": "<string>",
      "template_json": "<any>",
      "template_html": "<string>",
      "attachments": [
        {
          "content": "<string>",
          "name": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the business

Query Parameters

include_project_email_templates
enum<string>

Whether to include project email templates in the list of business's email templates

Available options:
true

Response

200 - application/json
A dictionary with an `email_templates` property which is an array of `EmailTemplate` objects
email_templates
object[]
required

An array of email templates