Temenos Transact · Capability

Temenos Transact Core Banking API — Loans

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

Run with Naftiko Temenos TransactLoans

What You Can Do

GET
Getloans — Temenos Transact List Loans
/v1/holdings/loans
GET
Getloan — Temenos Transact Get Loan Details
/v1/holdings/loans/{loanid}

MCP Tools

temenos-transact-list-loans

Temenos Transact List Loans

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

Temenos Transact Get Loan Details

read-only idempotent

Capability Spec

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