Temenos Transact · Capability

Temenos Transact Core Banking API — Customers

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

Run with Naftiko Temenos TransactCustomers

What You Can Do

GET
Getcustomers — Temenos Transact List Customers
/v1/party/customers
POST
Createcustomer — Temenos Transact Create Customer
/v1/party/customers
GET
Getcustomer — Temenos Transact Get Customer Details
/v1/party/customers/{customerid}
PUT
Updatecustomer — Temenos Transact Update Customer
/v1/party/customers/{customerid}
GET
Getcustomeraccounts — Temenos Transact List Customer Accounts
/v1/party/customers/{customerid}/accounts

MCP Tools

temenos-transact-list-customers

Temenos Transact List Customers

read-only idempotent
temenos-transact-create-customer

Temenos Transact Create Customer

temenos-transact-get-customer-details

Temenos Transact Get Customer Details

read-only idempotent
temenos-transact-update-customer

Temenos Transact Update Customer

idempotent
temenos-transact-list-customer-accounts

Temenos Transact List Customer Accounts

read-only idempotent

Capability Spec

core-banking-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Transact Core Banking API — Customers
  description: 'Temenos Transact Core Banking API — Customers. 5 operations. Lead operation: Temenos Transact List Customers.
    Self-contained Naftiko capability covering one Temenos Transact business surface.'
  tags:
  - Temenos Transact
  - Customers
  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-customers
    baseUri: https://api.temenos.com/api/v1.0.0
    description: Temenos Transact Core Banking API — Customers business capability. Self-contained, no shared references.
    resources:
    - name: party-customers
      path: /party/customers
      operations:
      - name: getcustomers
        method: GET
        description: Temenos Transact List Customers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerName
          in: query
          type: string
          description: Filter by customer name (partial match supported)
        - name: mnemonic
          in: query
          type: string
          description: Filter by customer mnemonic
        - name: sector
          in: query
          type: integer
          description: Filter by customer sector code
        - name: status
          in: query
          type: string
          description: Filter by customer status
      - name: createcustomer
        method: POST
        description: Temenos Transact Create Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: party-customers-customerId
      path: /party/customers/{customerId}
      operations:
      - name: getcustomer
        method: GET
        description: Temenos Transact Get Customer Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecustomer
        method: PUT
        description: Temenos Transact Update Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - 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-customers-rest
    port: 8080
    description: REST adapter for Temenos Transact Core Banking API — Customers. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/party/customers
      name: party-customers
      description: REST surface for party-customers.
      operations:
      - method: GET
        name: getcustomers
        description: Temenos Transact List Customers
        call: core-banking-customers.getcustomers
        with:
          customerName: rest.customerName
          mnemonic: rest.mnemonic
          sector: rest.sector
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomer
        description: Temenos Transact Create Customer
        call: core-banking-customers.createcustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/party/customers/{customerid}
      name: party-customers-customerid
      description: REST surface for party-customers-customerId.
      operations:
      - method: GET
        name: getcustomer
        description: Temenos Transact Get Customer Details
        call: core-banking-customers.getcustomer
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecustomer
        description: Temenos Transact Update Customer
        call: core-banking-customers.updatecustomer
        with:
          body: rest.body
        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-customers.getcustomeraccounts
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-banking-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Transact Core Banking API — Customers. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: temenos-transact-list-customers
      description: Temenos Transact List Customers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-customers.getcustomers
      with:
        customerName: tools.customerName
        mnemonic: tools.mnemonic
        sector: tools.sector
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-create-customer
      description: Temenos Transact Create Customer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-banking-customers.createcustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-get-customer-details
      description: Temenos Transact Get Customer Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-banking-customers.getcustomer
      outputParameters:
      - type: object
        mapping: $.
    - name: temenos-transact-update-customer
      description: Temenos Transact Update Customer
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: core-banking-customers.updatecustomer
      with:
        body: tools.body
      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-customers.getcustomeraccounts
      outputParameters:
      - type: object
        mapping: $.