Talend · Capability

Talend Cloud Orchestration API — Tasks

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

Run with Naftiko TalendTasks

What You Can Do

GET
Listtasks — List Tasks
/v1/orchestration/executables/tasks
POST
Createtask — Create Task
/v1/orchestration/executables/tasks
POST
Searchtasks — Search Tasks
/v1/orchestration/executables/tasks/search
GET
Gettask — Get Task
/v1/orchestration/executables/tasks/{taskid}
PUT
Updatetask — Update Task
/v1/orchestration/executables/tasks/{taskid}
DELETE
Deletetask — Delete Task
/v1/orchestration/executables/tasks/{taskid}

MCP Tools

list-tasks

List Tasks

read-only idempotent
create-task

Create Task

search-tasks

Search Tasks

read-only
get-task

Get Task

read-only idempotent
update-task

Update Task

idempotent
delete-task

Delete Task

idempotent

Capability Spec

orchestration-tasks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Talend Cloud Orchestration API — Tasks
  description: 'Talend Cloud Orchestration API — Tasks. 6 operations. Lead operation: List Tasks. Self-contained Naftiko capability
    covering one Talend business surface.'
  tags:
  - Talend
  - Tasks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TALEND_API_KEY: TALEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestration-tasks
    baseUri: https://api.{region}.cloud.talend.com
    description: Talend Cloud Orchestration API — Tasks business capability. Self-contained, no shared references.
    resources:
    - name: orchestration-executables-tasks
      path: /orchestration/executables/tasks
      operations:
      - name: listtasks
        method: GET
        description: List Tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workspaceId
          in: query
          type: string
          description: Filter tasks by workspace
        - name: limit
          in: query
          type: integer
          description: Maximum number of tasks to return
        - name: offset
          in: query
          type: integer
          description: Number of tasks to skip
      - name: createtask
        method: POST
        description: Create Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: orchestration-executables-tasks-search
      path: /orchestration/executables/tasks/search
      operations:
      - name: searchtasks
        method: POST
        description: Search Tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: orchestration-executables-tasks-taskId
      path: /orchestration/executables/tasks/{taskId}
      operations:
      - name: gettask
        method: GET
        description: Get Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatetask
        method: PUT
        description: Update Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletetask
        method: DELETE
        description: Delete Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TALEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: orchestration-tasks-rest
    port: 8080
    description: REST adapter for Talend Cloud Orchestration API — Tasks. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/orchestration/executables/tasks
      name: orchestration-executables-tasks
      description: REST surface for orchestration-executables-tasks.
      operations:
      - method: GET
        name: listtasks
        description: List Tasks
        call: orchestration-tasks.listtasks
        with:
          workspaceId: rest.workspaceId
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createtask
        description: Create Task
        call: orchestration-tasks.createtask
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestration/executables/tasks/search
      name: orchestration-executables-tasks-search
      description: REST surface for orchestration-executables-tasks-search.
      operations:
      - method: POST
        name: searchtasks
        description: Search Tasks
        call: orchestration-tasks.searchtasks
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestration/executables/tasks/{taskid}
      name: orchestration-executables-tasks-taskid
      description: REST surface for orchestration-executables-tasks-taskId.
      operations:
      - method: GET
        name: gettask
        description: Get Task
        call: orchestration-tasks.gettask
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatetask
        description: Update Task
        call: orchestration-tasks.updatetask
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletetask
        description: Delete Task
        call: orchestration-tasks.deletetask
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestration-tasks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Talend Cloud Orchestration API — Tasks. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-tasks
      description: List Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-tasks.listtasks
      with:
        workspaceId: tools.workspaceId
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: create-task
      description: Create Task
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-tasks.createtask
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-tasks
      description: Search Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: orchestration-tasks.searchtasks
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-task
      description: Get Task
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-tasks.gettask
      outputParameters:
      - type: object
        mapping: $.
    - name: update-task
      description: Update Task
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: orchestration-tasks.updatetask
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-task
      description: Delete Task
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: orchestration-tasks.deletetask
      outputParameters:
      - type: object
        mapping: $.