Workday Integration · Capability

Workday Integration Workday Scheduling API — Scheduling

Workday Integration Workday Scheduling API — Scheduling. 2 operations. Lead operation: Workday Integration Retrieve a collection of schedules. Self-contained Naftiko capability covering one Workday Integration business surface.

Run with Naftiko Workday IntegrationScheduling

What You Can Do

GET
Getschedules — Workday Integration Retrieve a collection of schedules
/v1/schedules
GET
Getschedulebyid — Workday Integration Retrieve a specific Schedule
/v1/schedules/{id}

MCP Tools

workday-integration-retrieve-collection-schedules

Workday Integration Retrieve a collection of schedules

read-only idempotent
workday-integration-retrieve-specific-schedule

Workday Integration Retrieve a specific Schedule

read-only idempotent

Capability Spec

scheduling-scheduling.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Integration Workday Scheduling API — Scheduling
  description: 'Workday Integration Workday Scheduling API — Scheduling. 2 operations. Lead operation: Workday Integration
    Retrieve a collection of schedules. Self-contained Naftiko capability covering one Workday Integration business surface.'
  tags:
  - Workday Integration
  - Scheduling
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_INTEGRATION_API_KEY: WORKDAY_INTEGRATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: scheduling-scheduling
    baseUri: https://{baseUrl}/ccx/api/scheduling/v1/{tenant}
    description: Workday Integration Workday Scheduling API — Scheduling business capability. Self-contained, no shared references.
    resources:
    - name: schedules
      path: /schedules
      operations:
      - name: getschedules
        method: GET
        description: Workday Integration Retrieve a collection of schedules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: schedules-ID
      path: /schedules/{ID}
      operations:
      - name: getschedulebyid
        method: GET
        description: Workday Integration Retrieve a specific Schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: scheduling-scheduling-rest
    port: 8080
    description: REST adapter for Workday Integration Workday Scheduling API — Scheduling. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/schedules
      name: schedules
      description: REST surface for schedules.
      operations:
      - method: GET
        name: getschedules
        description: Workday Integration Retrieve a collection of schedules
        call: scheduling-scheduling.getschedules
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/schedules/{id}
      name: schedules-id
      description: REST surface for schedules-ID.
      operations:
      - method: GET
        name: getschedulebyid
        description: Workday Integration Retrieve a specific Schedule
        call: scheduling-scheduling.getschedulebyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: scheduling-scheduling-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Integration Workday Scheduling API — Scheduling. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: workday-integration-retrieve-collection-schedules
      description: Workday Integration Retrieve a collection of schedules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-scheduling.getschedules
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-integration-retrieve-specific-schedule
      description: Workday Integration Retrieve a specific Schedule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-scheduling.getschedulebyid
      outputParameters:
      - type: object
        mapping: $.