US Bancorp · Capability

US Bank Push to Card API — Push to Card Payments

US Bank Push to Card API — Push to Card Payments. 2 operations. Lead operation: Initiate Push to Card Payment. Self-contained Naftiko capability covering one Us Bancorp business surface.

Run with Naftiko Us BancorpPush to Card Payments

What You Can Do

POST
Initiatepushtocardpayment — Initiate Push to Card Payment
/v1/push-to-card/payments
GET
Getpushtocardpaymentstatus — Get Push to Card Payment Status
/v1/push-to-card/payments/{paymentid}

MCP Tools

initiate-push-card-payment

Initiate Push to Card Payment

get-push-card-payment-status

Get Push to Card Payment Status

read-only idempotent

Capability Spec

us-bank-push-to-card-push-to-card-payments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: US Bank Push to Card API — Push to Card Payments
  description: 'US Bank Push to Card API — Push to Card Payments. 2 operations. Lead operation: Initiate Push to Card Payment.
    Self-contained Naftiko capability covering one Us Bancorp business surface.'
  tags:
  - Us Bancorp
  - Push to Card Payments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    US_BANCORP_API_KEY: US_BANCORP_API_KEY
capability:
  consumes:
  - type: http
    namespace: us-bank-push-to-card-push-to-card-payments
    baseUri: https://api.usbank.com/v1
    description: US Bank Push to Card API — Push to Card Payments business capability. Self-contained, no shared references.
    resources:
    - name: push-to-card-payments
      path: /push-to-card/payments
      operations:
      - name: initiatepushtocardpayment
        method: POST
        description: Initiate Push to Card Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Content-Type
          in: header
          type: string
          required: true
        - name: Correlation-ID
          in: header
          type: string
          description: Unique identifier for request/response correlation
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: push-to-card-payments-paymentId
      path: /push-to-card/payments/{paymentId}
      operations:
      - name: getpushtocardpaymentstatus
        method: GET
        description: Get Push to Card Payment Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: paymentId
          in: path
          type: string
          description: Unique payment identifier
          required: true
        - name: Correlation-ID
          in: header
          type: string
          required: true
        - name: Accept
          in: header
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.US_BANCORP_API_KEY}}'
  exposes:
  - type: rest
    namespace: us-bank-push-to-card-push-to-card-payments-rest
    port: 8080
    description: REST adapter for US Bank Push to Card API — Push to Card Payments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/push-to-card/payments
      name: push-to-card-payments
      description: REST surface for push-to-card-payments.
      operations:
      - method: POST
        name: initiatepushtocardpayment
        description: Initiate Push to Card Payment
        call: us-bank-push-to-card-push-to-card-payments.initiatepushtocardpayment
        with:
          Content-Type: rest.Content-Type
          Correlation-ID: rest.Correlation-ID
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/push-to-card/payments/{paymentid}
      name: push-to-card-payments-paymentid
      description: REST surface for push-to-card-payments-paymentId.
      operations:
      - method: GET
        name: getpushtocardpaymentstatus
        description: Get Push to Card Payment Status
        call: us-bank-push-to-card-push-to-card-payments.getpushtocardpaymentstatus
        with:
          paymentId: rest.paymentId
          Correlation-ID: rest.Correlation-ID
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: us-bank-push-to-card-push-to-card-payments-mcp
    port: 9090
    transport: http
    description: MCP adapter for US Bank Push to Card API — Push to Card Payments. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: initiate-push-card-payment
      description: Initiate Push to Card Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: us-bank-push-to-card-push-to-card-payments.initiatepushtocardpayment
      with:
        Content-Type: tools.Content-Type
        Correlation-ID: tools.Correlation-ID
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-push-card-payment-status
      description: Get Push to Card Payment Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: us-bank-push-to-card-push-to-card-payments.getpushtocardpaymentstatus
      with:
        paymentId: tools.paymentId
        Correlation-ID: tools.Correlation-ID
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.