Postmark · Capability

Postmark API — Bounceid

Postmark API — Bounceid. 3 operations. Lead operation: Postmark Get a single bounce. Self-contained Naftiko capability covering one Postmark business surface.

Run with Naftiko PostmarkBounceid

What You Can Do

GET
Get — Postmark Get a single bounce
/v1/bounces/{bounceid}
PUT
Put — Postmark Activate a bounce
/v1/bounces/{bounceid}/activate
GET
Get — Postmark Get bounce dump
/v1/bounces/{bounceid}/dump

MCP Tools

postmark-get-single-bounce

Postmark Get a single bounce

read-only idempotent
postmark-activate-bounce

Postmark Activate a bounce

idempotent
postmark-get-bounce-dump

Postmark Get bounce dump

read-only idempotent

Capability Spec

postmark-bounceid.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Postmark API — Bounceid
  description: 'Postmark API — Bounceid. 3 operations. Lead operation: Postmark Get a single bounce. Self-contained Naftiko
    capability covering one Postmark business surface.'
  tags:
  - Postmark
  - Bounceid
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    POSTMARK_API_KEY: POSTMARK_API_KEY
capability:
  consumes:
  - type: http
    namespace: postmark-bounceid
    baseUri: http://{{baseurl}}
    description: Postmark API — Bounceid business capability. Self-contained, no shared references.
    resources:
    - name: bounces-bounceid
      path: /bounces/{bounceid}
      operations:
      - name: get
        method: GET
        description: Postmark Get a single bounce
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bounceid
          in: path
          type: string
          description: The ID of the bounce to retrieve.
          required: true
    - name: bounces-bounceid-activate
      path: /bounces/{bounceid}/activate
      operations:
      - name: put
        method: PUT
        description: Postmark Activate a bounce
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bounceid
          in: path
          type: string
          description: The ID of the bounce to retrieve.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: bounces-bounceid-dump
      path: /bounces/{bounceid}/dump
      operations:
      - name: get
        method: GET
        description: Postmark Get bounce dump
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bounceid
          in: path
          type: string
          description: The ID of the bounce to retrieve.
          required: true
  exposes:
  - type: rest
    namespace: postmark-bounceid-rest
    port: 8080
    description: REST adapter for Postmark API — Bounceid. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/bounces/{bounceid}
      name: bounces-bounceid
      description: REST surface for bounces-bounceid.
      operations:
      - method: GET
        name: get
        description: Postmark Get a single bounce
        call: postmark-bounceid.get
        with:
          bounceid: rest.bounceid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bounces/{bounceid}/activate
      name: bounces-bounceid-activate
      description: REST surface for bounces-bounceid-activate.
      operations:
      - method: PUT
        name: put
        description: Postmark Activate a bounce
        call: postmark-bounceid.put
        with:
          bounceid: rest.bounceid
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bounces/{bounceid}/dump
      name: bounces-bounceid-dump
      description: REST surface for bounces-bounceid-dump.
      operations:
      - method: GET
        name: get
        description: Postmark Get bounce dump
        call: postmark-bounceid.get
        with:
          bounceid: rest.bounceid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: postmark-bounceid-mcp
    port: 9090
    transport: http
    description: MCP adapter for Postmark API — Bounceid. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: postmark-get-single-bounce
      description: Postmark Get a single bounce
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-bounceid.get
      with:
        bounceid: tools.bounceid
      outputParameters:
      - type: object
        mapping: $.
    - name: postmark-activate-bounce
      description: Postmark Activate a bounce
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: postmark-bounceid.put
      with:
        bounceid: tools.bounceid
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: postmark-get-bounce-dump
      description: Postmark Get bounce dump
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-bounceid.get
      with:
        bounceid: tools.bounceid
      outputParameters:
      - type: object
        mapping: $.