Skip to content
For LLMsView as Markdown·

Postmark

Send transactional emails, manage templates, track bounces, and configure webhooks with the Postmark API.

DetailValue
CategoryCommunication
Base URLhttps://api.postmarkapp.com
AuthenticationAPI Key
Endpoints8
Connector keyemail

Using Postmark in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Postmark from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
POST /emailSend a single email
POST /email/batchSend a batch of up to 500 emails
POST /email/withTemplateSend an email using a saved template
GET /bouncesRetrieve bounce records
GET /templatesList all email templates
POST /templatesCreate a new email template
GET /messages/outboundSearch sent outbound messages
GET /stats/outboundGet outbound delivery statistics

Each endpoint is documented in full below. Use the outline on the right to jump to one.

POST /email

Send a single email

DetailValue
Operation IDemail.send
MethodPOST
Path/email

Parameters

No parameters.

Request Body

FieldType
Fromstring
Tostring
Subjectstring
HtmlBodystring
TextBodystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.send.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

POST /email/batch

Send a batch of up to 500 emails

DetailValue
Operation IDemail.sendBatch
MethodPOST
Path/email/batch

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.sendBatch.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

POST /email/withTemplate

Send an email using a saved template

DetailValue
Operation IDemail.sendWithTemplate
MethodPOST
Path/email/withTemplate

Parameters

No parameters.

Request Body

FieldType
TemplateIdinteger
TemplateModelobject
Fromstring
Tostring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.sendWithTemplate.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

GET /bounces

Retrieve bounce records

DetailValue
Operation IDemail.listBounces
MethodGET
Path/bounces

Parameters

NameLocationTypeRequired
countqueryintegerNo
typequerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.listBounces.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

GET /templates

List all email templates

DetailValue
Operation IDemail.listTemplates
MethodGET
Path/templates

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.listTemplates.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

POST /templates

Create a new email template

DetailValue
Operation IDemail.createTemplate
MethodPOST
Path/templates

Parameters

No parameters.

Request Body

FieldType
Namestring
Subjectstring
HtmlBodystring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.createTemplate.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

GET /messages/outbound

Search sent outbound messages

DetailValue
Operation IDemail.searchOutbound
MethodGET
Path/messages/outbound

Parameters

NameLocationTypeRequired
countqueryintegerNo
recipientquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.searchOutbound.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.

GET /stats/outbound

Get outbound delivery statistics

DetailValue
Operation IDemail.getStats
MethodGET
Path/stats/outbound

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Postmark connection from the Connection dropdown.
  3. In the Operation dropdown, select email.getStats.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Postmark API reference.