message_outbound_detail
Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp
Single outbound detail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
messageId | string | yes |
Example call
Arguments
{
"messageId": "00000000-0000-0000-0000-000000000000"
}
curl
curl -X POST https://gateway.pipeworx.io/postmark/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"message_outbound_detail","arguments":{"messageId":"00000000-0000-0000-0000-000000000000"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('message_outbound_detail', {
"messageId": "00000000-0000-0000-0000-000000000000"
});
Response shape
| Field | Type | Description |
|---|---|---|
MessageID | string | Unique message identifier |
From | string | Sender email address |
To | string | Recipient email address |
Subject | string | Email subject |
Status | string | Message delivery status |
SubmittedAt | string | ISO timestamp of submission |
DeliveredAt | string | ISO timestamp when delivered |
Opens | integer | Number of times opened |
Clicks | integer | Number of link clicks |
Full JSON Schema
{
"type": "object",
"properties": {
"MessageID": {
"type": "string",
"description": "Unique message identifier"
},
"From": {
"type": "string",
"description": "Sender email address"
},
"To": {
"type": "string",
"description": "Recipient email address"
},
"Subject": {
"type": "string",
"description": "Email subject"
},
"Status": {
"type": "string",
"description": "Message delivery status"
},
"SubmittedAt": {
"type": "string",
"description": "ISO timestamp of submission"
},
"DeliveredAt": {
"type": "string",
"description": "ISO timestamp when delivered"
},
"Opens": {
"type": "integer",
"description": "Number of times opened"
},
"Clicks": {
"type": "integer",
"description": "Number of link clicks"
}
},
"additionalProperties": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"postmark": {
"url": "https://gateway.pipeworx.io/postmark/mcp"
}
}
}
See Getting Started for client-specific install steps.