Temenos Transact · Capability

Temenos Transact Core Banking API — Deposits

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

Run with Naftiko Temenos TransactDeposits

What You Can Do

GET
Getdeposits — Temenos Transact List Deposits
/v1/holdings/deposits
GET
Getdeposit — Temenos Transact Get Deposit Details
/v1/holdings/deposits/{depositid}

MCP Tools

temenos-transact-list-deposits

Temenos Transact List Deposits

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

Temenos Transact Get Deposit Details

read-only idempotent

Capability Spec

core-banking-deposits.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Transact Core Banking API — Deposits
  description: 'Temenos Transact Core Banking API — Deposits. 2 operations. Lead operation: Temenos Transact List Deposits.
    Self-contained Naftiko capability covering one Temenos Transact business surface.'
  tags:
  - Temenos Transact
  - Deposits
  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-deposits
    baseUri: https://api.temenos.com/api/v1.0.0
    description: Temenos Transact Core Banking API — Deposits business capability. Self-contained, no shared references.
    resources:
    - name: holdings-deposits
      path: /holdings/deposits
      operations:
      - name: getdeposits
        method: GET
        description: Temenos Transact List Deposits
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maturityDateFrom
          in: query
          type: string
          description: Filter deposits maturing from this date (YYYY-MM-DD)
        - name: maturityDateTo
          in: query
          type: string
          description: Filter deposits maturing up to this date (YYYY-MM-DD)
    - name: holdings-deposits-depositId
      path: /holdings/deposits/{depositId}
      operations:
      - name: getdeposit
        method: GET
        description: Temenos Transact Get Deposit Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: depositId
          in: path
          type: string
          description: Unique identifier of the deposit arrangement
          required: true
    authentication:
      type: bearer
      token: '{{env.TEMENOS_TRANSACT_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-banking-deposits-rest
    port: 8080
    description: REST adapter for Temenos Transact Core Banking API — Deposits. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/holdings/deposits
      name: holdings-deposits
      description: REST surface for holdings-deposits.
      operations:
      - method: GET
        name: getdeposits
        description: Temenos Transact List Deposits
        call: core-banking-deposits.getdeposits
        with:
          maturityDateFrom: rest.maturityDateFrom
          maturityDateTo: rest.maturityDateTo
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/holdings/deposits/{depositid}
      name: holdings-deposits-depositid
      description: REST surface for holdings-deposits-depositId.
      operations:
      - method: GET
        name: getdeposit
        description: Temenos Transact Get Deposit Details
        call: core-banking-deposits.getdeposit
        with:
          depositId: rest.depositId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-banking-deposits-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Transact Core Banking API — Deposits. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: temenos-transact-list-deposits
      description: Temenos Transact List Deposits
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-deposits.getdeposits
      with:
        maturityDateFrom: tools.maturityDateFrom
        maturityDateTo: tools.maturityDateTo
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-get-deposit-details
      description: Temenos Transact Get Deposit Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-deposits.getdeposit
      with:
        depositId: tools.depositId
      outputParameters:
      - type: object
        mapping: $.