FIS Global · Capability

FIS Payments API — Transactions

FIS Payments API — Transactions. 1 operations. Lead operation: Get account transactions. Self-contained Naftiko capability covering one Fis business surface.

Run with Naftiko FisTransactions

What You Can Do

GET
Getaccounttransactions — Get account transactions
/v1/accounts/{accountid}/transactions

MCP Tools

get-account-transactions

Get account transactions

read-only idempotent

Capability Spec

payments-transactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FIS Payments API — Transactions
  description: 'FIS Payments API — Transactions. 1 operations. Lead operation: Get account transactions. Self-contained Naftiko
    capability covering one Fis business surface.'
  tags:
  - Fis
  - Transactions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FIS_API_KEY: FIS_API_KEY
capability:
  consumes:
  - type: http
    namespace: payments-transactions
    baseUri: https://api.fisglobal.com/v1
    description: FIS Payments API — Transactions business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-transactions
      path: /accounts/{accountId}/transactions
      operations:
      - name: getaccounttransactions
        method: GET
        description: Get account transactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: fromDate
          in: query
          type: string
          description: Start date for transaction history (ISO 8601)
        - name: toDate
          in: query
          type: string
          description: End date for transaction history
        - name: pageSize
          in: query
          type: integer
        - name: pageToken
          in: query
          type: string
          description: Pagination token from previous response
    authentication:
      type: bearer
      token: '{{env.FIS_API_KEY}}'
  exposes:
  - type: rest
    namespace: payments-transactions-rest
    port: 8080
    description: REST adapter for FIS Payments API — Transactions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/transactions
      name: accounts-accountid-transactions
      description: REST surface for accounts-accountId-transactions.
      operations:
      - method: GET
        name: getaccounttransactions
        description: Get account transactions
        call: payments-transactions.getaccounttransactions
        with:
          accountId: rest.accountId
          fromDate: rest.fromDate
          toDate: rest.toDate
          pageSize: rest.pageSize
          pageToken: rest.pageToken
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payments-transactions-mcp
    port: 9090
    transport: http
    description: MCP adapter for FIS Payments API — Transactions. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-account-transactions
      description: Get account transactions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payments-transactions.getaccounttransactions
      with:
        accountId: tools.accountId
        fromDate: tools.fromDate
        toDate: tools.toDate
        pageSize: tools.pageSize
        pageToken: tools.pageToken
      outputParameters:
      - type: object
        mapping: $.