Workday Tracking System · Capability

Workday Scheduling API — Scheduling Organizations

Workday Scheduling API — Scheduling Organizations. 3 operations. Lead operation: List Scheduling Organizations. Self-contained Naftiko capability covering one Workday Tracking System business surface.

Run with Naftiko Workday Tracking SystemScheduling Organizations

What You Can Do

GET
Listschedulingorganizations — List Scheduling Organizations
/v1/schedulingorganizations
POST
Createschedulingorganization — Create Scheduling Organization
/v1/schedulingorganizations
GET
Getschedulingorganization — Get Scheduling Organization
/v1/schedulingorganizations/{orgid}

MCP Tools

list-scheduling-organizations

List Scheduling Organizations

read-only idempotent
create-scheduling-organization

Create Scheduling Organization

get-scheduling-organization

Get Scheduling Organization

read-only idempotent

Capability Spec

scheduling-scheduling-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Scheduling API — Scheduling Organizations
  description: 'Workday Scheduling API — Scheduling Organizations. 3 operations. Lead operation: List Scheduling Organizations.
    Self-contained Naftiko capability covering one Workday Tracking System business surface.'
  tags:
  - Workday Tracking System
  - Scheduling Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_TRACKING_SYSTEM_API_KEY: WORKDAY_TRACKING_SYSTEM_API_KEY
capability:
  consumes:
  - type: http
    namespace: scheduling-scheduling-organizations
    baseUri: https://{tenant}.workday.com/api/scheduling/v1
    description: Workday Scheduling API — Scheduling Organizations business capability. Self-contained, no shared references.
    resources:
    - name: schedulingOrganizations
      path: /schedulingOrganizations
      operations:
      - name: listschedulingorganizations
        method: GET
        description: List Scheduling Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Maximum number of records to return
        - name: offset
          in: query
          type: integer
          description: Offset for pagination
      - name: createschedulingorganization
        method: POST
        description: Create Scheduling Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: schedulingOrganizations-orgId
      path: /schedulingOrganizations/{orgId}
      operations:
      - name: getschedulingorganization
        method: GET
        description: Get Scheduling Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The Workday ID of the scheduling organization
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_TRACKING_SYSTEM_API_KEY}}'
  exposes:
  - type: rest
    namespace: scheduling-scheduling-organizations-rest
    port: 8080
    description: REST adapter for Workday Scheduling API — Scheduling Organizations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/schedulingorganizations
      name: schedulingorganizations
      description: REST surface for schedulingOrganizations.
      operations:
      - method: GET
        name: listschedulingorganizations
        description: List Scheduling Organizations
        call: scheduling-scheduling-organizations.listschedulingorganizations
        with:
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createschedulingorganization
        description: Create Scheduling Organization
        call: scheduling-scheduling-organizations.createschedulingorganization
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/schedulingorganizations/{orgid}
      name: schedulingorganizations-orgid
      description: REST surface for schedulingOrganizations-orgId.
      operations:
      - method: GET
        name: getschedulingorganization
        description: Get Scheduling Organization
        call: scheduling-scheduling-organizations.getschedulingorganization
        with:
          orgId: rest.orgId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: scheduling-scheduling-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Scheduling API — Scheduling Organizations. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-scheduling-organizations
      description: List Scheduling Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-scheduling-organizations.listschedulingorganizations
      with:
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: create-scheduling-organization
      description: Create Scheduling Organization
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: scheduling-scheduling-organizations.createschedulingorganization
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-scheduling-organization
      description: Get Scheduling Organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-scheduling-organizations.getschedulingorganization
      with:
        orgId: tools.orgId
      outputParameters:
      - type: object
        mapping: $.