Postmark · Capability

Postmark API — Platforms

Postmark API — Platforms. 2 operations. Lead operation: Postmark Get browser plaform usage. Self-contained Naftiko capability covering one Postmark business surface.

Run with Naftiko PostmarkPlatforms

What You Can Do

GET
Get — Postmark Get browser plaform usage
/v1/stats/outbound/clicks/platforms
GET
Get — Postmark Get email platform usage
/v1/stats/outbound/opens/platforms

MCP Tools

postmark-get-browser-plaform-usage

Postmark Get browser plaform usage

read-only idempotent
postmark-get-email-platform-usage

Postmark Get email platform usage

read-only idempotent

Capability Spec

postmark-platforms.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Postmark API — Platforms
  description: 'Postmark API — Platforms. 2 operations. Lead operation: Postmark Get browser plaform usage. Self-contained
    Naftiko capability covering one Postmark business surface.'
  tags:
  - Postmark
  - Platforms
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    POSTMARK_API_KEY: POSTMARK_API_KEY
capability:
  consumes:
  - type: http
    namespace: postmark-platforms
    baseUri: http://{{baseurl}}
    description: Postmark API — Platforms business capability. Self-contained, no shared references.
    resources:
    - name: stats-outbound-clicks-platforms
      path: /stats/outbound/clicks/platforms
      operations:
      - name: get
        method: GET
        description: Postmark Get browser plaform usage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag
          in: query
          type: string
          description: Filter by tag
        - name: fromdate
          in: query
          type: string
          description: Filter messages starting from the date specified. e.g. `2014-02-01`
        - name: todate
          in: query
          type: string
          description: Filter messages up to the date specified. e.g. `2014-02-01`
    - name: stats-outbound-opens-platforms
      path: /stats/outbound/opens/platforms
      operations:
      - name: get
        method: GET
        description: Postmark Get email platform usage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tag
          in: query
          type: string
          description: Filter by tag
        - name: fromdate
          in: query
          type: string
          description: Filter messages starting from the date specified. e.g. `2014-02-01`
        - name: todate
          in: query
          type: string
          description: Filter messages up to the date specified. e.g. `2014-02-01`
  exposes:
  - type: rest
    namespace: postmark-platforms-rest
    port: 8080
    description: REST adapter for Postmark API — Platforms. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/stats/outbound/clicks/platforms
      name: stats-outbound-clicks-platforms
      description: REST surface for stats-outbound-clicks-platforms.
      operations:
      - method: GET
        name: get
        description: Postmark Get browser plaform usage
        call: postmark-platforms.get
        with:
          tag: rest.tag
          fromdate: rest.fromdate
          todate: rest.todate
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/stats/outbound/opens/platforms
      name: stats-outbound-opens-platforms
      description: REST surface for stats-outbound-opens-platforms.
      operations:
      - method: GET
        name: get
        description: Postmark Get email platform usage
        call: postmark-platforms.get
        with:
          tag: rest.tag
          fromdate: rest.fromdate
          todate: rest.todate
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: postmark-platforms-mcp
    port: 9090
    transport: http
    description: MCP adapter for Postmark API — Platforms. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: postmark-get-browser-plaform-usage
      description: Postmark Get browser plaform usage
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-platforms.get
      with:
        tag: tools.tag
        fromdate: tools.fromdate
        todate: tools.todate
      outputParameters:
      - type: object
        mapping: $.
    - name: postmark-get-email-platform-usage
      description: Postmark Get email platform usage
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-platforms.get
      with:
        tag: tools.tag
        fromdate: tools.fromdate
        todate: tools.todate
      outputParameters:
      - type: object
        mapping: $.