US Bancorp · Capability

US Bank Positive Pay API — Exceptions

US Bank Positive Pay API — Exceptions. 2 operations. Lead operation: Get Positive Pay Exceptions. Self-contained Naftiko capability covering one Us Bancorp business surface.

Run with Naftiko Us BancorpExceptions

What You Can Do

GET
Getpositivepayexceptions — Get Positive Pay Exceptions
/v1/positive-pay/exceptions
POST
Submitexceptiondecision — Submit Exception Decision
/v1/positive-pay/exceptions/{exceptionid}/decision

MCP Tools

get-positive-pay-exceptions

Get Positive Pay Exceptions

read-only idempotent
submit-exception-decision

Submit Exception Decision

Capability Spec

us-bank-positive-pay-exceptions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: US Bank Positive Pay API — Exceptions
  description: 'US Bank Positive Pay API — Exceptions. 2 operations. Lead operation: Get Positive Pay Exceptions. Self-contained
    Naftiko capability covering one Us Bancorp business surface.'
  tags:
  - Us Bancorp
  - Exceptions
  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-positive-pay-exceptions
    baseUri: https://api.usbank.com/v1
    description: US Bank Positive Pay API — Exceptions business capability. Self-contained, no shared references.
    resources:
    - name: positive-pay-exceptions
      path: /positive-pay/exceptions
      operations:
      - name: getpositivepayexceptions
        method: GET
        description: Get Positive Pay Exceptions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountNumber
          in: query
          type: string
          description: Filter exceptions by account number
        - name: exceptionDate
          in: query
          type: string
          description: Exception processing date (ISO 8601)
        - name: Correlation-ID
          in: header
          type: string
          description: Unique identifier for request/response correlation
          required: true
        - name: Accept
          in: header
          type: string
          required: true
    - name: positive-pay-exceptions-exceptionId-decision
      path: /positive-pay/exceptions/{exceptionId}/decision
      operations:
      - name: submitexceptiondecision
        method: POST
        description: Submit Exception Decision
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: exceptionId
          in: path
          type: string
          description: Unique identifier for the exception item
          required: true
        - name: Correlation-ID
          in: header
          type: string
          required: true
        - name: Content-Type
          in: header
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.US_BANCORP_API_KEY}}'
  exposes:
  - type: rest
    namespace: us-bank-positive-pay-exceptions-rest
    port: 8080
    description: REST adapter for US Bank Positive Pay API — Exceptions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/positive-pay/exceptions
      name: positive-pay-exceptions
      description: REST surface for positive-pay-exceptions.
      operations:
      - method: GET
        name: getpositivepayexceptions
        description: Get Positive Pay Exceptions
        call: us-bank-positive-pay-exceptions.getpositivepayexceptions
        with:
          accountNumber: rest.accountNumber
          exceptionDate: rest.exceptionDate
          Correlation-ID: rest.Correlation-ID
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/positive-pay/exceptions/{exceptionid}/decision
      name: positive-pay-exceptions-exceptionid-decision
      description: REST surface for positive-pay-exceptions-exceptionId-decision.
      operations:
      - method: POST
        name: submitexceptiondecision
        description: Submit Exception Decision
        call: us-bank-positive-pay-exceptions.submitexceptiondecision
        with:
          exceptionId: rest.exceptionId
          Correlation-ID: rest.Correlation-ID
          Content-Type: rest.Content-Type
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: us-bank-positive-pay-exceptions-mcp
    port: 9090
    transport: http
    description: MCP adapter for US Bank Positive Pay API — Exceptions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-positive-pay-exceptions
      description: Get Positive Pay Exceptions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: us-bank-positive-pay-exceptions.getpositivepayexceptions
      with:
        accountNumber: tools.accountNumber
        exceptionDate: tools.exceptionDate
        Correlation-ID: tools.Correlation-ID
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: submit-exception-decision
      description: Submit Exception Decision
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: us-bank-positive-pay-exceptions.submitexceptiondecision
      with:
        exceptionId: tools.exceptionId
        Correlation-ID: tools.Correlation-ID
        Content-Type: tools.Content-Type
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.