Temenos · Capability

Temenos Transact Microservices API — Configuration Management

Temenos Transact Microservices API — Configuration Management. 2 operations. Lead operation: List Configurations. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosConfiguration Management

What You Can Do

GET
Listconfigurations — List Configurations
/v1/configurations
POST
Createconfiguration — Create Configuration
/v1/configurations

MCP Tools

list-configurations

List Configurations

read-only idempotent
create-configuration

Create Configuration

Capability Spec

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