Workday Integrations · Capability

Workday Integrations Workday REST API — Business Processes

Workday Integrations Workday REST API — Business Processes. 2 operations. Lead operation: Workday Integrations List business processes. Self-contained Naftiko capability covering one Workday Integrations business surface.

Run with Naftiko Workday IntegrationsBusiness Processes

What You Can Do

GET
Listbusinessprocesses — Workday Integrations List business processes
/v1/businessprocesses
GET
Getbusinessprocess — Workday Integrations Get a business process
/v1/businessprocesses/{processid}

MCP Tools

workday-integrations-list-business-processes

Workday Integrations List business processes

read-only idempotent
workday-integrations-get-business-process

Workday Integrations Get a business process

read-only idempotent

Capability Spec

rest-business-processes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Integrations Workday REST API — Business Processes
  description: 'Workday Integrations Workday REST API — Business Processes. 2 operations. Lead operation: Workday Integrations
    List business processes. Self-contained Naftiko capability covering one Workday Integrations business surface.'
  tags:
  - Workday Integrations
  - Business Processes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_INTEGRATIONS_API_KEY: WORKDAY_INTEGRATIONS_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-business-processes
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/v1/{tenant}
    description: Workday Integrations Workday REST API — Business Processes business capability. Self-contained, no shared
      references.
    resources:
    - name: businessProcesses
      path: /businessProcesses
      operations:
      - name: listbusinessprocesses
        method: GET
        description: Workday Integrations List business processes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by process status
    - name: businessProcesses-processId
      path: /businessProcesses/{processId}
      operations:
      - name: getbusinessprocess
        method: GET
        description: Workday Integrations Get a business process
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: processId
          in: path
          type: string
          description: Workday ID of the business process instance
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_INTEGRATIONS_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-business-processes-rest
    port: 8080
    description: REST adapter for Workday Integrations Workday REST API — Business Processes. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/businessprocesses
      name: businessprocesses
      description: REST surface for businessProcesses.
      operations:
      - method: GET
        name: listbusinessprocesses
        description: Workday Integrations List business processes
        call: rest-business-processes.listbusinessprocesses
        with:
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/businessprocesses/{processid}
      name: businessprocesses-processid
      description: REST surface for businessProcesses-processId.
      operations:
      - method: GET
        name: getbusinessprocess
        description: Workday Integrations Get a business process
        call: rest-business-processes.getbusinessprocess
        with:
          processId: rest.processId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-business-processes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Integrations Workday REST API — Business Processes. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: workday-integrations-list-business-processes
      description: Workday Integrations List business processes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-business-processes.listbusinessprocesses
      with:
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-integrations-get-business-process
      description: Workday Integrations Get a business process
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-business-processes.getbusinessprocess
      with:
        processId: tools.processId
      outputParameters:
      - type: object
        mapping: $.