POST /v1/send-template-email and open it in the visual editor whenever you want.
Authentication
All requests require a Bearer token:Endpoints
POST /v1/templates
Creates a template from HTML.
The HTML is stored as you send it: we don’t rewrite it or inject styles. It can include variables (
{{first_name}}) — they’re substituted at send time, not at creation.
Keep the
id or the internal_id: those are the two identifiers send-template-email accepts. The internal_id is a short per-project number, handy if you’ll write it by hand in your config.GET /v1/templates
Lists the project’s templates, most recently updated first.html field comes back empty; fetch the individual template to get the body.
GET /v1/templates/:id
Returns a template with its HTML. The:id can be the UUID or the numeric internal_id.
PUT /v1/templates/:id
Updates a template. Send only the fields that change:name, html, subject, description, or preheader.