Scout RFP · Capability

Workday Strategic Sourcing Events API — Worksheets

Workday Strategic Sourcing Events API — Worksheets. 2 operations. Lead operation: List Worksheets. Self-contained Naftiko capability covering one Scout Rfp business surface.

Run with Naftiko Scout RfpWorksheets

What You Can Do

GET
Listworksheets — List Worksheets
/v1/events/{event-id}/worksheets
GET
Getworksheet — Get Worksheet
/v1/events/{event-id}/worksheets/{id}

MCP Tools

list-worksheets

List Worksheets

read-only idempotent
get-worksheet

Get Worksheet

read-only idempotent

Capability Spec

events-worksheets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Strategic Sourcing Events API — Worksheets
  description: 'Workday Strategic Sourcing Events API — Worksheets. 2 operations. Lead operation: List Worksheets. Self-contained
    Naftiko capability covering one Scout Rfp business surface.'
  tags:
  - Scout Rfp
  - Worksheets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SCOUT_RFP_API_KEY: SCOUT_RFP_API_KEY
capability:
  consumes:
  - type: http
    namespace: events-worksheets
    baseUri: https://api.us.workdayspend.com/services/events/v1
    description: Workday Strategic Sourcing Events API — Worksheets business capability. Self-contained, no shared references.
    resources:
    - name: events-event_id-worksheets
      path: /events/{event_id}/worksheets
      operations:
      - name: listworksheets
        method: GET
        description: List Worksheets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_id
          in: path
          type: string
          description: Event identifier
          required: true
    - name: events-event_id-worksheets-id
      path: /events/{event_id}/worksheets/{id}
      operations:
      - name: getworksheet
        method: GET
        description: Get Worksheet
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_id
          in: path
          type: string
          description: Event identifier
          required: true
        - name: id
          in: path
          type: string
          description: Worksheet identifier
          required: true
    authentication:
      type: apikey
      key: X-Api-Key
      value: '{{env.SCOUT_RFP_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: events-worksheets-rest
    port: 8080
    description: REST adapter for Workday Strategic Sourcing Events API — Worksheets. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/events/{event-id}/worksheets
      name: events-event-id-worksheets
      description: REST surface for events-event_id-worksheets.
      operations:
      - method: GET
        name: listworksheets
        description: List Worksheets
        call: events-worksheets.listworksheets
        with:
          event_id: rest.event_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/events/{event-id}/worksheets/{id}
      name: events-event-id-worksheets-id
      description: REST surface for events-event_id-worksheets-id.
      operations:
      - method: GET
        name: getworksheet
        description: Get Worksheet
        call: events-worksheets.getworksheet
        with:
          event_id: rest.event_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: events-worksheets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Strategic Sourcing Events API — Worksheets. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-worksheets
      description: List Worksheets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-worksheets.listworksheets
      with:
        event_id: tools.event_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-worksheet
      description: Get Worksheet
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-worksheets.getworksheet
      with:
        event_id: tools.event_id
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.