Workday Extend · Capability

Workday Extend Workday Orchestration API — Orchestrations

Workday Extend Workday Orchestration API — Orchestrations. 7 operations. Lead operation: Workday Extend List orchestrations. Self-contained Naftiko capability covering one Workday Extend business surface.

Run with Naftiko Workday ExtendOrchestrations

What You Can Do

GET
Listorchestrations — Workday Extend List orchestrations
/v1/orchestrations
POST
Createorchestration — Workday Extend Create an orchestration
/v1/orchestrations
GET
Getorchestration — Workday Extend Retrieve an orchestration
/v1/orchestrations/{orchestrationid}
PATCH
Updateorchestration — Workday Extend Update an orchestration
/v1/orchestrations/{orchestrationid}
DELETE
Deleteorchestration — Workday Extend Delete an orchestration
/v1/orchestrations/{orchestrationid}
POST
Activateorchestration — Workday Extend Activate an orchestration
/v1/orchestrations/{orchestrationid}/activate
POST
Deactivateorchestration — Workday Extend Deactivate an orchestration
/v1/orchestrations/{orchestrationid}/deactivate

MCP Tools

workday-extend-list-orchestrations

Workday Extend List orchestrations

read-only idempotent
workday-extend-create-orchestration

Workday Extend Create an orchestration

workday-extend-retrieve-orchestration

Workday Extend Retrieve an orchestration

read-only idempotent
workday-extend-update-orchestration

Workday Extend Update an orchestration

idempotent
workday-extend-delete-orchestration

Workday Extend Delete an orchestration

idempotent
workday-extend-activate-orchestration

Workday Extend Activate an orchestration

workday-extend-deactivate-orchestration

Workday Extend Deactivate an orchestration

Capability Spec

orchestration-orchestrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Extend Workday Orchestration API — Orchestrations
  description: 'Workday Extend Workday Orchestration API — Orchestrations. 7 operations. Lead operation: Workday Extend List
    orchestrations. Self-contained Naftiko capability covering one Workday Extend business surface.'
  tags:
  - Workday Extend
  - Orchestrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_EXTEND_API_KEY: WORKDAY_EXTEND_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestration-orchestrations
    baseUri: https://{baseUrl}/api/orchestrate/v1/{tenant}
    description: Workday Extend Workday Orchestration API — Orchestrations business capability. Self-contained, no shared
      references.
    resources:
    - name: orchestrations
      path: /orchestrations
      operations:
      - name: listorchestrations
        method: GET
        description: Workday Extend List orchestrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by orchestration status
      - name: createorchestration
        method: POST
        description: Workday Extend Create an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: orchestrations-orchestrationId
      path: /orchestrations/{orchestrationId}
      operations:
      - name: getorchestration
        method: GET
        description: Workday Extend Retrieve an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateorchestration
        method: PATCH
        description: Workday Extend Update an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteorchestration
        method: DELETE
        description: Workday Extend Delete an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: orchestrations-orchestrationId-activate
      path: /orchestrations/{orchestrationId}/activate
      operations:
      - name: activateorchestration
        method: POST
        description: Workday Extend Activate an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: orchestrations-orchestrationId-deactivate
      path: /orchestrations/{orchestrationId}/deactivate
      operations:
      - name: deactivateorchestration
        method: POST
        description: Workday Extend Deactivate an orchestration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_EXTEND_API_KEY}}'
  exposes:
  - type: rest
    namespace: orchestration-orchestrations-rest
    port: 8080
    description: REST adapter for Workday Extend Workday Orchestration API — Orchestrations. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/orchestrations
      name: orchestrations
      description: REST surface for orchestrations.
      operations:
      - method: GET
        name: listorchestrations
        description: Workday Extend List orchestrations
        call: orchestration-orchestrations.listorchestrations
        with:
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorchestration
        description: Workday Extend Create an orchestration
        call: orchestration-orchestrations.createorchestration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestrations/{orchestrationid}
      name: orchestrations-orchestrationid
      description: REST surface for orchestrations-orchestrationId.
      operations:
      - method: GET
        name: getorchestration
        description: Workday Extend Retrieve an orchestration
        call: orchestration-orchestrations.getorchestration
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateorchestration
        description: Workday Extend Update an orchestration
        call: orchestration-orchestrations.updateorchestration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorchestration
        description: Workday Extend Delete an orchestration
        call: orchestration-orchestrations.deleteorchestration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestrations/{orchestrationid}/activate
      name: orchestrations-orchestrationid-activate
      description: REST surface for orchestrations-orchestrationId-activate.
      operations:
      - method: POST
        name: activateorchestration
        description: Workday Extend Activate an orchestration
        call: orchestration-orchestrations.activateorchestration
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orchestrations/{orchestrationid}/deactivate
      name: orchestrations-orchestrationid-deactivate
      description: REST surface for orchestrations-orchestrationId-deactivate.
      operations:
      - method: POST
        name: deactivateorchestration
        description: Workday Extend Deactivate an orchestration
        call: orchestration-orchestrations.deactivateorchestration
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestration-orchestrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Extend Workday Orchestration API — Orchestrations. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: workday-extend-list-orchestrations
      description: Workday Extend List orchestrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-orchestrations.listorchestrations
      with:
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-create-orchestration
      description: Workday Extend Create an orchestration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-orchestrations.createorchestration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-retrieve-orchestration
      description: Workday Extend Retrieve an orchestration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestration-orchestrations.getorchestration
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-update-orchestration
      description: Workday Extend Update an orchestration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: orchestration-orchestrations.updateorchestration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-delete-orchestration
      description: Workday Extend Delete an orchestration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: orchestration-orchestrations.deleteorchestration
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-activate-orchestration
      description: Workday Extend Activate an orchestration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-orchestrations.activateorchestration
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-extend-deactivate-orchestration
      description: Workday Extend Deactivate an orchestration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestration-orchestrations.deactivateorchestration
      outputParameters:
      - type: object
        mapping: $.