Iterable · Capability

Iterable REST API — Push

Iterable REST API — Push. 1 operations. Lead operation: Send a push notification. Self-contained Naftiko capability covering one Iterable business surface.

Run with Naftiko IterablePush

What You Can Do

POST
Sendpushnotification — Send a push notification
/v1/push/target

MCP Tools

send-push-notification

Send a push notification

Capability Spec

rest-push.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Iterable REST API — Push
  description: 'Iterable REST API — Push. 1 operations. Lead operation: Send a push notification. Self-contained Naftiko capability
    covering one Iterable business surface.'
  tags:
  - Iterable
  - Push
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ITERABLE_API_KEY: ITERABLE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-push
    baseUri: https://api.iterable.com/api
    description: Iterable REST API — Push business capability. Self-contained, no shared references.
    resources:
    - name: push-target
      path: /push/target
      operations:
      - name: sendpushnotification
        method: POST
        description: Send a push notification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Api-Key
      value: '{{env.ITERABLE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: rest-push-rest
    port: 8080
    description: REST adapter for Iterable REST API — Push. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/push/target
      name: push-target
      description: REST surface for push-target.
      operations:
      - method: POST
        name: sendpushnotification
        description: Send a push notification
        call: rest-push.sendpushnotification
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-push-mcp
    port: 9090
    transport: http
    description: MCP adapter for Iterable REST API — Push. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: send-push-notification
      description: Send a push notification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-push.sendpushnotification
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.