Temenos · Capability

Temenos Transact API — Enterprise

Temenos Transact API — Enterprise. 2 operations. Lead operation: List Bundle Arrangements. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosEnterprise

What You Can Do

GET
Listbundlearrangements — List Bundle Arrangements
/v1/enterprise/bundlearrangements
POST
Createbundlearrangement — Create Bundle Arrangement
/v1/enterprise/bundlearrangements

MCP Tools

list-bundle-arrangements

List Bundle Arrangements

read-only idempotent
create-bundle-arrangement

Create Bundle Arrangement

Capability Spec

transact-enterprise.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Transact API — Enterprise
  description: 'Temenos Transact API — Enterprise. 2 operations. Lead operation: List Bundle Arrangements. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Enterprise
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: transact-enterprise
    baseUri: https://api.temenos.com/transact/v1
    description: Temenos Transact API — Enterprise business capability. Self-contained, no shared references.
    resources:
    - name: enterprise-bundleArrangements
      path: /enterprise/bundleArrangements
      operations:
      - name: listbundlearrangements
        method: GET
        description: List Bundle Arrangements
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerId
          in: query
          type: string
          description: Filter by customer identifier
      - name: createbundlearrangement
        method: POST
        description: Create Bundle Arrangement
        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: transact-enterprise-rest
    port: 8080
    description: REST adapter for Temenos Transact API — Enterprise. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/enterprise/bundlearrangements
      name: enterprise-bundlearrangements
      description: REST surface for enterprise-bundleArrangements.
      operations:
      - method: GET
        name: listbundlearrangements
        description: List Bundle Arrangements
        call: transact-enterprise.listbundlearrangements
        with:
          customerId: rest.customerId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createbundlearrangement
        description: Create Bundle Arrangement
        call: transact-enterprise.createbundlearrangement
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transact-enterprise-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Transact API — Enterprise. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-bundle-arrangements
      description: List Bundle Arrangements
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transact-enterprise.listbundlearrangements
      with:
        customerId: tools.customerId
      outputParameters:
      - type: object
        mapping: $.
    - name: create-bundle-arrangement
      description: Create Bundle Arrangement
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transact-enterprise.createbundlearrangement
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.