Temenos · Capability

Temenos Infinity Digital Banking API — Accounts

Temenos Infinity Digital Banking API — Accounts. 2 operations. Lead operation: List Customer Accounts. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosAccounts

What You Can Do

GET
Listaccounts — List Customer Accounts
/v1/accounts
GET
Getaccount — Get Account Details
/v1/accounts/{accountid}

MCP Tools

list-customer-accounts

List Customer Accounts

read-only idempotent
get-account-details

Get Account Details

read-only idempotent

Capability Spec

infinity-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Infinity Digital Banking API — Accounts
  description: 'Temenos Infinity Digital Banking API — Accounts. 2 operations. Lead operation: List Customer Accounts. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: infinity-accounts
    baseUri: https://api.temenos.com/infinity/v1
    description: Temenos Infinity Digital Banking API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: accounts
      path: /accounts
      operations:
      - name: listaccounts
        method: GET
        description: List Customer Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerId
          in: query
          type: string
          description: Filter accounts by customer identifier
        - name: accountType
          in: query
          type: string
          description: Filter by account type (e.g., CURRENT, SAVINGS, DEPOSIT)
    - name: accounts-accountId
      path: /accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: Get Account Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TEMENOS_API_KEY}}'
  exposes:
  - type: rest
    namespace: infinity-accounts-rest
    port: 8080
    description: REST adapter for Temenos Infinity Digital Banking API — Accounts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/accounts
      name: accounts
      description: REST surface for accounts.
      operations:
      - method: GET
        name: listaccounts
        description: List Customer Accounts
        call: infinity-accounts.listaccounts
        with:
          customerId: rest.customerId
          accountType: rest.accountType
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}
      name: accounts-accountid
      description: REST surface for accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: Get Account Details
        call: infinity-accounts.getaccount
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: infinity-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Infinity Digital Banking API — Accounts. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-customer-accounts
      description: List Customer Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: infinity-accounts.listaccounts
      with:
        customerId: tools.customerId
        accountType: tools.accountType
      outputParameters:
      - type: object
        mapping: $.
    - name: get-account-details
      description: Get Account Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: infinity-accounts.getaccount
      outputParameters:
      - type: object
        mapping: $.