Postmark integration
Postmark is an email delivery service that enables developers to send…
- Provider
- postmark
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 46 available
Quick start
Call Postmark from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Postmark's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"POSTMARK_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Postmark API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
46 actions exposed via the
Postmark integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
POSTMARK_ARCHIVE_MESSAGE_STREAM -
POSTMARK_CHECK_SPAM_SCORE -
POSTMARK_CREATE_INBOUND_RULE -
POSTMARK_CREATE_MESSAGE_STREAM -
POSTMARK_CREATE_SUPPRESSIONS -
POSTMARK_CREATE_TEMPLATE -
POSTMARK_CREATE_WEBHOOK -
POSTMARK_DELETE_INBOUND_RULE -
POSTMARK_DELETE_SUPPRESSIONS -
POSTMARK_DELETE_TEMPLATE -
POSTMARK_DELETE_WEBHOOK -
POSTMARK_EDIT_SERVER
Show all 46 actions
-
POSTMARK_EDIT_TEMPLATE -
POSTMARK_EDIT_WEBHOOK -
POSTMARK_GET_BOUNCE_COUNTS -
POSTMARK_GET_BOUNCES -
POSTMARK_GET_BROWSER_PLATFORM_USAGE -
POSTMARK_GET_BROWSER_USAGE -
POSTMARK_GET_CLICK_COUNTS -
POSTMARK_GET_CLICKS_BY_BROWSER_FAMILY -
POSTMARK_GET_CLICKS_BY_LOCATION -
POSTMARK_GET_DELIVERY_STATS -
POSTMARK_GET_EMAIL_CLIENT_USAGE -
POSTMARK_GET_EMAIL_OPEN_COUNTS -
POSTMARK_GET_MESSAGE_STREAM -
POSTMARK_GET_OPENS_BY_PLATFORM -
POSTMARK_GET_OUTBOUND_OVERVIEW -
POSTMARK_GET_SENT_COUNTS -
POSTMARK_GET_SERVER -
POSTMARK_GET_SPAM_COMPLAINTS -
POSTMARK_GET_TEMPLATE -
POSTMARK_GET_TRACKED_EMAIL_COUNTS -
POSTMARK_GET_WEBHOOK -
POSTMARK_LIST_INBOUND_RULES -
POSTMARK_LIST_MESSAGE_STREAMS -
POSTMARK_LIST_OUTBOUND_MESSAGE_CLICKS -
POSTMARK_LIST_OUTBOUND_MESSAGE_OPENS -
POSTMARK_LIST_SUPPRESSIONS -
POSTMARK_LIST_TEMPLATES -
POSTMARK_LIST_WEBHOOKS -
POSTMARK_SEARCH_INBOUND_MESSAGES -
POSTMARK_SEARCH_OUTBOUND_MESSAGES -
POSTMARK_SEND_BATCH_WITH_TEMPLATES -
POSTMARK_UNARCHIVE_MESSAGE_STREAM -
POSTMARK_UPDATE_MESSAGE_STREAM -
POSTMARK_VALIDATE_TEMPLATE
Build with Postmark
Open OverSkill, describe what you want to build, and reference Postmark in your prompt — the AI will wire up the integration automatically.