bounce_activate
Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp
Re-activate a bounced address.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "123456789"
}
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":"bounce_activate","arguments":{"id":"123456789"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('bounce_activate', {
"id": "123456789"
});
Response shape
| Field | Type | Description |
|---|---|---|
Bounce | object | Updated bounce object |
Full JSON Schema
{
"type": "object",
"properties": {
"Bounce": {
"type": "object",
"description": "Updated bounce object",
"additionalProperties": true
}
},
"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.