Talend · Capability

Talend Cloud Orchestration API — Plans

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

Run with Naftiko TalendPlans

What You Can Do

GET
Listplans — List Plans
/v1/orchestration/executables/plans
POST
Createplan — Create Plan
/v1/orchestration/executables/plans
GET
Getplan — Get Plan
/v1/orchestration/executables/plans/{planid}
PUT
Updateplan — Update Plan
/v1/orchestration/executables/plans/{planid}
DELETE
Deleteplan — Delete Plan
/v1/orchestration/executables/plans/{planid}

MCP Tools

list-plans

List Plans

read-only idempotent
create-plan

Create Plan

get-plan

Get Plan

read-only idempotent
update-plan

Update Plan

idempotent
delete-plan

Delete Plan

idempotent

Capability Spec

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