Talend · Capability

Talend Cloud Orchestration API — Workspaces

Talend Cloud Orchestration API — Workspaces. 5 operations. Lead operation: List Workspaces. Self-contained Naftiko capability covering one Talend business surface.

Run with Naftiko TalendWorkspaces

What You Can Do

GET
Listworkspaces — List Workspaces
/v1/orchestration/workspaces
POST
Createworkspace — Create Workspace
/v1/orchestration/workspaces
GET
Getworkspace — Get Workspace
/v1/orchestration/workspaces/{id}
PUT
Updateworkspace — Update Workspace
/v1/orchestration/workspaces/{id}
DELETE
Deleteworkspace — Delete Workspace
/v1/orchestration/workspaces/{id}

MCP Tools

list-workspaces

List Workspaces

read-only idempotent
create-workspace

Create Workspace

get-workspace

Get Workspace

read-only idempotent
update-workspace

Update Workspace

idempotent
delete-workspace

Delete Workspace

idempotent

Capability Spec

orchestration-workspaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Orchestration API — Workspaces
  description: 'Talend Cloud Orchestration API — Workspaces. 5 operations. Lead operation: List Workspaces. Self-contained
    Naftiko capability covering one Talend business surface.'
  tags:
  - Talend
  - Workspaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestration-workspaces
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Orchestration API — Workspaces business capability. Self-contained, no shared references.
    resources:
    - name: orchestration-workspaces
      path: /orchestration/workspaces
      operations:
      - name: listworkspaces
        method: GET
        description: List Workspaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createworkspace
        method: POST
        description: Create Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: orchestration-workspaces-id
      path: /orchestration/workspaces/{id}
      operations:
      - name: getworkspace
        method: GET
        description: Get Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateworkspace
        method: PUT
        description: Update Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteworkspace
        method: DELETE
        description: Delete Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TALEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: orchestration-workspaces-rest
    port: 8080
    description: REST adapter for Talend Cloud Orchestration API — Workspaces. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/orchestration/workspaces
      name: orchestration-workspaces
      description: REST surface for orchestration-workspaces.
      operations:
      - method: GET
        name: listworkspaces
        description: List Workspaces
        call: orchestration-workspaces.listworkspaces
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createworkspace
        description: Create Workspace
        call: orchestration-workspaces.createworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestration/workspaces/{id}
      name: orchestration-workspaces-id
      description: REST surface for orchestration-workspaces-id.
      operations:
      - method: GET
        name: getworkspace
        description: Get Workspace
        call: orchestration-workspaces.getworkspace
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateworkspace
        description: Update Workspace
        call: orchestration-workspaces.updateworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteworkspace
        description: Delete Workspace
        call: orchestration-workspaces.deleteworkspace
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestration-workspaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Orchestration API — Workspaces. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-workspaces
      description: List Workspaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-workspaces.listworkspaces
      outputParameters:
      - type: object
        mapping: $.
    - name: create-workspace
      description: Create Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-workspaces.createworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-workspace
      description: Get Workspace
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-workspaces.getworkspace
      outputParameters:
      - type: object
        mapping: $.
    - name: update-workspace
      description: Update Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: orchestration-workspaces.updateworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-workspace
      description: Delete Workspace
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: orchestration-workspaces.deleteworkspace
      outputParameters:
      - type: object
        mapping: $.