Temenos · Capability

Temenos Infinity Digital Banking API — Payments

Temenos Infinity Digital Banking API — Payments. 2 operations. Lead operation: Initiate A Payment. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosPayments

What You Can Do

POST
Createpayment — Initiate A Payment
/v1/payments
GET
Getpayment — Get Payment Status
/v1/payments/{paymentid}

MCP Tools

initiate-payment

Initiate A Payment

get-payment-status

Get Payment Status

read-only idempotent

Capability Spec

infinity-payments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Infinity Digital Banking API — Payments
  description: 'Temenos Infinity Digital Banking API — Payments. 2 operations. Lead operation: Initiate A Payment. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Payments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: infinity-payments
    baseUri: https://api.temenos.com/infinity/v1
    description: Temenos Infinity Digital Banking API — Payments business capability. Self-contained, no shared references.
    resources:
    - name: payments
      path: /payments
      operations:
      - name: createpayment
        method: POST
        description: Initiate A Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: payments-paymentId
      path: /payments/{paymentId}
      operations:
      - name: getpayment
        method: GET
        description: Get Payment Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: paymentId
          in: path
          type: string
          description: Unique payment identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.TEMENOS_API_KEY}}'
  exposes:
  - type: rest
    namespace: infinity-payments-rest
    port: 8080
    description: REST adapter for Temenos Infinity Digital Banking API — Payments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/payments
      name: payments
      description: REST surface for payments.
      operations:
      - method: POST
        name: createpayment
        description: Initiate A Payment
        call: infinity-payments.createpayment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/payments/{paymentid}
      name: payments-paymentid
      description: REST surface for payments-paymentId.
      operations:
      - method: GET
        name: getpayment
        description: Get Payment Status
        call: infinity-payments.getpayment
        with:
          paymentId: rest.paymentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: infinity-payments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Infinity Digital Banking API — Payments. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: initiate-payment
      description: Initiate A Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: infinity-payments.createpayment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-payment-status
      description: Get Payment Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: infinity-payments.getpayment
      with:
        paymentId: tools.paymentId
      outputParameters:
      - type: object
        mapping: $.