Temenos · Capability

Temenos Journey Manager API — Form Groups

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

Run with Naftiko TemenosForm Groups

What You Can Do

GET
Listformgroups — List Form Groups
/v1/formgroups
POST
Createformgroup — Create Form Group
/v1/formgroups

MCP Tools

list-form-groups

List Form Groups

read-only idempotent
create-form-group

Create Form Group

Capability Spec

journey-manager-form-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Temenos Journey Manager API — Form Groups
  description: 'Temenos Journey Manager API — Form Groups. 2 operations. Lead operation: List Form Groups. Self-contained
    Naftiko capability covering one Temenos business surface.'
  tags:
  - Temenos
  - Form Groups
  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-form-groups
    baseUri: https://journey.temenos.com/api/v1
    description: Temenos Journey Manager API — Form Groups business capability. Self-contained, no shared references.
    resources:
    - name: formGroups
      path: /formGroups
      operations:
      - name: listformgroups
        method: GET
        description: List Form Groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createformgroup
        method: POST
        description: Create Form Group
        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-form-groups-rest
    port: 8080
    description: REST adapter for Temenos Journey Manager API — Form Groups. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/formgroups
      name: formgroups
      description: REST surface for formGroups.
      operations:
      - method: GET
        name: listformgroups
        description: List Form Groups
        call: journey-manager-form-groups.listformgroups
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createformgroup
        description: Create Form Group
        call: journey-manager-form-groups.createformgroup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: journey-manager-form-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Temenos Journey Manager API — Form Groups. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-form-groups
      description: List Form Groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: journey-manager-form-groups.listformgroups
      outputParameters:
      - type: object
        mapping: $.
    - name: create-form-group
      description: Create Form Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: journey-manager-form-groups.createformgroup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.