Temenos Transact · Capability

Temenos Transact Core Banking API — Accounts

Temenos Transact Core Banking API — Accounts. 5 operations. Lead operation: Temenos Transact List Accounts. Self-contained Naftiko capability covering one Temenos Transact business surface.

Run with Naftiko Temenos TransactAccounts

What You Can Do

GET
Getaccounts — Temenos Transact List Accounts
/v1/holdings/accounts
GET
Getaccount — Temenos Transact Get Account Details
/v1/holdings/accounts/{accountid}
PUT
Updateaccount — Temenos Transact Update Account
/v1/holdings/accounts/{accountid}
GET
Getaccountbalances — Temenos Transact Get Account Balances
/v1/holdings/accounts/{accountid}/balances
GET
Getcustomeraccounts — Temenos Transact List Customer Accounts
/v1/party/customers/{customerid}/accounts

MCP Tools

temenos-transact-list-accounts

Temenos Transact List Accounts

read-only idempotent
temenos-transact-get-account-details

Temenos Transact Get Account Details

read-only idempotent
temenos-transact-update-account

Temenos Transact Update Account

idempotent
temenos-transact-get-account-balances

Temenos Transact Get Account Balances

read-only idempotent
temenos-transact-list-customer-accounts

Temenos Transact List Customer Accounts

read-only idempotent

Capability Spec

core-banking-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Transact Core Banking API — Accounts
  description: 'Temenos Transact Core Banking API — Accounts. 5 operations. Lead operation: Temenos Transact List Accounts.
    Self-contained Naftiko capability covering one Temenos Transact business surface.'
  tags:
  - Temenos Transact
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_TRANSACT_API_KEY: TEMENOS_TRANSACT_API_KEY
capability:
  consumes:
  - type: http
    namespace: core-banking-accounts
    baseUri: https://api.temenos.com/api/v1.0.0
    description: Temenos Transact Core Banking API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: holdings-accounts
      path: /holdings/accounts
      operations:
      - name: getaccounts
        method: GET
        description: Temenos Transact List Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountType
          in: query
          type: string
          description: Filter by account type (e.g., CURRENT, SAVINGS, CORPORATE)
        - name: currency
          in: query
          type: string
          description: Filter by account currency (ISO 4217 code)
        - name: status
          in: query
          type: string
          description: Filter by account status
    - name: holdings-accounts-accountId
      path: /holdings/accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: Temenos Transact Get Account Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateaccount
        method: PUT
        description: Temenos Transact Update Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: holdings-accounts-accountId-balances
      path: /holdings/accounts/{accountId}/balances
      operations:
      - name: getaccountbalances
        method: GET
        description: Temenos Transact Get Account Balances
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: party-customers-customerId-accounts
      path: /party/customers/{customerId}/accounts
      operations:
      - name: getcustomeraccounts
        method: GET
        description: Temenos Transact List Customer Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TEMENOS_TRANSACT_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-banking-accounts-rest
    port: 8080
    description: REST adapter for Temenos Transact Core Banking API — Accounts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/holdings/accounts
      name: holdings-accounts
      description: REST surface for holdings-accounts.
      operations:
      - method: GET
        name: getaccounts
        description: Temenos Transact List Accounts
        call: core-banking-accounts.getaccounts
        with:
          accountType: rest.accountType
          currency: rest.currency
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/holdings/accounts/{accountid}
      name: holdings-accounts-accountid
      description: REST surface for holdings-accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: Temenos Transact Get Account Details
        call: core-banking-accounts.getaccount
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateaccount
        description: Temenos Transact Update Account
        call: core-banking-accounts.updateaccount
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/holdings/accounts/{accountid}/balances
      name: holdings-accounts-accountid-balances
      description: REST surface for holdings-accounts-accountId-balances.
      operations:
      - method: GET
        name: getaccountbalances
        description: Temenos Transact Get Account Balances
        call: core-banking-accounts.getaccountbalances
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/party/customers/{customerid}/accounts
      name: party-customers-customerid-accounts
      description: REST surface for party-customers-customerId-accounts.
      operations:
      - method: GET
        name: getcustomeraccounts
        description: Temenos Transact List Customer Accounts
        call: core-banking-accounts.getcustomeraccounts
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-banking-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Transact Core Banking API — Accounts. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: temenos-transact-list-accounts
      description: Temenos Transact List Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-accounts.getaccounts
      with:
        accountType: tools.accountType
        currency: tools.currency
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-get-account-details
      description: Temenos Transact Get Account Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-accounts.getaccount
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-update-account
      description: Temenos Transact Update Account
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: core-banking-accounts.updateaccount
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-get-account-balances
      description: Temenos Transact Get Account Balances
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-accounts.getaccountbalances
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-list-customer-accounts
      description: Temenos Transact List Customer Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-accounts.getcustomeraccounts
      outputParameters:
      - type: object
        mapping: $.