CaraCara API

List email templates

Retrieve all email templates for the tenant.

Retrieve all email templates for the tenant.

GET
/emails/templates

Authorization

AuthorizationRequiredBearer <token>

Use your API key (sk_live_* or sk_test_*) as the Bearer token.

In: header

curl -X GET "https://platform.caramedical.com/api/v1/emails/templates" \
  -H "Authorization: Bearer <token>"

List of email templates.

{
  "templates": [
    {
      "id": "string",
      "name": "string",
      "subject": "string",
      "htmlContent": "string",
      "textContent": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}