message_outbound_detail

Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp

Single outbound detail.

Parameters

NameTypeRequiredDescription
messageIdstringyes

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

FieldTypeDescription
MessageIDstringUnique message identifier
FromstringSender email address
TostringRecipient email address
SubjectstringEmail subject
StatusstringMessage delivery status
SubmittedAtstringISO timestamp of submission
DeliveredAtstringISO timestamp when delivered
OpensintegerNumber of times opened
ClicksintegerNumber 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.

Regenerated from source · build July 9, 2026