Access Postmark's transactional email platform via the Postmark API. Inspect outbound messages, templates, and delivery events. Review bounce, spam, and engagement statistics. Manage webhooks and message streams.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Postmark API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Postmark |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Postmark |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Postmark API │
│ (User Chat) │ │ (API Key) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│2. Pair Device │ │
│3. Connect Postmark │ │
│ │ 4. Secure Proxy │
│ │ 5. API Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Postmark │
│ File │ │ Auth │ │ Platform │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Postmark again."
# Get outbound overview
clawlink_call_tool --tool "postmark_get_outbound_overview" --params '{}'
# Search outbound messages
clawlink_call_tool --tool "postmark_search_outbound_messages" --params '{"status": "sent"}'
# List templates
clawlink_call_tool --tool "postmark_list_templates" --params '{}'
All Postmark tool calls are authenticated automatically by ClawLink using the user's Postmark account.
No API key is required in chat. ClawLink stores the API key securely and injects it into every Postmark API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for postmark in the list.
clawlink_list_tools --integration postmark
Response: Returns the live tool catalog for Postmark.
If Postmark tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration postmark| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_list_message_streams | List all message streams for a server | Read |
postmark_get_message_stream | Get details of a specific stream | Read |
postmark_create_message_stream | Create a new message stream | Write |
postmark_update_message_stream | Update a stream's name or description | Write |
postmark_archive_message_stream | Archive a message stream (soft delete) | Write |
postmark_unarchive_message_stream | Restore an archived stream | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_search_outbound_messages | Search sent messages with filters | Read |
postmark_get_sent_counts | Get sent message counts by date range | Read |
postmark_get_delivery_stats | Get delivery statistics | Read |
postmark_list_outbound_message_opens | List open events for outbound messages | Read |
postmark_list_outbound_message_clicks | List click events for outbound messages | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_search_inbound_messages | Search inbound messages | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_list_templates | List all templates | Read |
postmark_get_template | Get template details by ID | Read |
postmark_create_template | Create a new template | Write |
postmark_edit_template | Update an existing template | Write |
postmark_delete_template | Delete a template permanently | Write |
postmark_validate_template | Validate a template against sample data | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_get_bounce_counts | Get aggregate bounce counts | Read |
postmark_get_bounces | List bounces with filters | Read |
postmark_get_spam_complaints | Get spam complaint counts | Read |
postmark_check_spam_score | Check spam score of raw email | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_get_outbound_overview | Get outbound statistics overview | Read |
postmark_get_email_open_counts | Get email open counts | Read |
postmark_get_click_counts | Get link click counts | Read |
postmark_get_email_client_usage | Get email client usage statistics | Read |
postmark_get_browser_usage | Get browser usage for clicks | Read |
postmark_get_browser_platform_usage | Get browser platform usage | Read |
postmark_get_clicks_by_browser_family | Get clicks grouped by browser | Read |
postmark_get_clicks_by_location | Get clicks by content type (HTML/Text) | Read |
postmark_get_opens_by_platform | Get opens by platform | Read |
postmark_get_tracked_email_counts | Get counts of tracked emails | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_list_suppressions | List suppressed email addresses | Read |
postmark_create_suppressions | Add addresses to suppression list | Write |
postmark_delete_suppressions | Remove addresses from suppression list | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_list_webhooks | List all webhooks | Read |
postmark_get_webhook | Get webhook details | Read |
postmark_create_webhook | Create a new webhook | Write |
postmark_edit_webhook | Update a webhook's URL or triggers | Write |
postmark_delete_webhook | Delete a webhook permanently | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_list_inbound_rules | List inbound rule triggers | Read |
postmark_create_inbound_rule | Create an inbound rule | Write |
postmark_delete_inbound_rule | Delete an inbound rule | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
postmark_get_server | Get server configuration details | Read |
postmark_edit_server | Update server settings | Write |
clawlink_call_tool --tool "postmark_get_outbound_overview" \
--params '{
"from": "2024-01-01",
"to": "2024-01-31"
}'
clawlink_call_tool --tool "postmark_search_outbound_messages" \
--params '{
"recipient": "customer@example.com",
"status": "sent",
"tag": "welcome"
}'
clawlink_call_tool --tool "postmark_get_template" \
--params '{
"template_id": "TEMPLATE_ID"
}'
clawlink_call_tool --tool "postmark_create_webhook" \
--params '{
"url": "https://example.com/webhook/postmark",
"triggers": {
"open": true,
"click": true,
"bounce": true,
"spam_complaint": true
},
"http_headers": {
"Authorization": "Bearer secret_token"
}
}'
clawlink_call_tool --tool "postmark_list_suppressions" \
--params '{
"message_stream": "outbound"
}'
clawlink_list_integrations to confirm Postmark is connected.clawlink_list_tools --integration postmark to see the live catalog.clawlink_search_tools with a short query and integration postmark.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: Get outbound overview → List templates → Report │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration postmark. |
| Missing connection | Postmark is not connected. Direct the user to https://claw-link.dev/dashboard?add=postmark. |
not_found | Template, webhook, or stream does not exist. Check the ID. |
validation_error | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
| Rate limited | Too many requests. Wait and retry with exponential backoff. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.postmark.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本