Temenos · Capability

Temenos Journey Manager API — Service Definitions

Temenos Journey Manager API — Service Definitions. 2 operations. Lead operation: List Service Definitions. Self-contained Naftiko capability covering one Temenos business surface.

Run with Naftiko TemenosService Definitions

What You Can Do

GET
Listservicedefinitions — List Service Definitions
/v1/services
POST
Createservicedefinition — Create Service Definition
/v1/services

MCP Tools

list-service-definitions

List Service Definitions

read-only idempotent
create-service-definition

Create Service Definition

Capability Spec

journey-manager-service-definitions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Journey Manager API — Service Definitions
  description: 'Temenos Journey Manager API — Service Definitions. 2 operations. Lead operation: List Service Definitions.
    Self-contained Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Service Definitions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TEMENOS_API_KEY: TEMENOS_API_KEY
capability:
  consumes:
  - type: http
    namespace: journey-manager-service-definitions
    baseUri: https://journey.temenos.com/api/v1
    description: Temenos Journey Manager API — Service Definitions business capability. Self-contained, no shared references.
    resources:
    - name: services
      path: /services
      operations:
      - name: listservicedefinitions
        method: GET
        description: List Service Definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservicedefinition
        method: POST
        description: Create Service Definition
        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: journey-manager-service-definitions-rest
    port: 8080
    description: REST adapter for Temenos Journey Manager API — Service Definitions. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/services
      name: services
      description: REST surface for services.
      operations:
      - method: GET
        name: listservicedefinitions
        description: List Service Definitions
        call: journey-manager-service-definitions.listservicedefinitions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicedefinition
        description: Create Service Definition
        call: journey-manager-service-definitions.createservicedefinition
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: journey-manager-service-definitions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Journey Manager API — Service Definitions. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-service-definitions
      description: List Service Definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: journey-manager-service-definitions.listservicedefinitions
      outputParameters:
      - type: object
        mapping: $.
    - name: create-service-definition
      description: Create Service Definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: journey-manager-service-definitions.createservicedefinition
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.