Temenos · Capability

Temenos Infinity Digital Banking API — Customers

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

Run with Naftiko TemenosCustomers

What You Can Do

GET
Getcustomer — Get Customer Profile
/v1/customers/{customerid}
PUT
Updatecustomer — Update Customer Profile
/v1/customers/{customerid}

MCP Tools

get-customer-profile

Get Customer Profile

read-only idempotent
update-customer-profile

Update Customer Profile

idempotent

Capability Spec

infinity-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Infinity Digital Banking API — Customers
  description: 'Temenos Infinity Digital Banking API — Customers. 2 operations. Lead operation: Get Customer Profile. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Customers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: infinity-customers
    baseUri: https://api.temenos.com/infinity/v1
    description: Temenos Infinity Digital Banking API — Customers business capability. Self-contained, no shared references.
    resources:
    - name: customers-customerId
      path: /customers/{customerId}
      operations:
      - name: getcustomer
        method: GET
        description: Get Customer Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecustomer
        method: PUT
        description: Update Customer Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TEMENOS_API_KEY}}'
  exposes:
  - type: rest
    namespace: infinity-customers-rest
    port: 8080
    description: REST adapter for Temenos Infinity Digital Banking API — Customers. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/customers/{customerid}
      name: customers-customerid
      description: REST surface for customers-customerId.
      operations:
      - method: GET
        name: getcustomer
        description: Get Customer Profile
        call: infinity-customers.getcustomer
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecustomer
        description: Update Customer Profile
        call: infinity-customers.updatecustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: infinity-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Infinity Digital Banking API — Customers. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: get-customer-profile
      description: Get Customer Profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: infinity-customers.getcustomer
      outputParameters:
      - type: object
        mapping: $.
    - name: update-customer-profile
      description: Update Customer Profile
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: infinity-customers.updatecustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.