Scout RFP · Capability

Workday Strategic Sourcing Events API — Events

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

Run with Naftiko Scout RfpEvents

What You Can Do

GET
Listevents — List Events
/v1/events
POST
Createevent — Create Event
/v1/events
GET
Describeevent — Describe Event Fields
/v1/events/describe
GET
Getevent — Get Event
/v1/events/{id}
PATCH
Updateevent — Update Event
/v1/events/{id}
DELETE
Deleteevent — Delete Event
/v1/events/{id}

MCP Tools

list-events

List Events

read-only idempotent
create-event

Create Event

describe-event-fields

Describe Event Fields

read-only idempotent
get-event

Get Event

read-only idempotent
update-event

Update Event

idempotent
delete-event

Delete Event

idempotent

Capability Spec

events-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Strategic Sourcing Events API — Events
  description: 'Workday Strategic Sourcing Events API — Events. 6 operations. Lead operation: List Events. Self-contained
    Naftiko capability covering one Scout Rfp business surface.'
  tags:
  - Scout Rfp
  - Events
  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-events
    baseUri: https://api.us.workdayspend.com/services/events/v1
    description: Workday Strategic Sourcing Events API — Events business capability. Self-contained, no shared references.
    resources:
    - name: events
      path: /events
      operations:
      - name: listevents
        method: GET
        description: List Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page[size]
          in: query
          type: integer
          description: Number of results per page (default 10, max 100)
        - name: filter
          in: query
          type: string
          description: Filter criteria for events (max 5 filters recommended)
        - name: include
          in: query
          type: string
          description: Related resources to include in the response
      - name: createevent
        method: POST
        description: Create Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: events-describe
      path: /events/describe
      operations:
      - name: describeevent
        method: GET
        description: Describe Event Fields
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: events-id
      path: /events/{id}
      operations:
      - name: getevent
        method: GET
        description: Get Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Event identifier
          required: true
      - name: updateevent
        method: PATCH
        description: Update Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Event identifier
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteevent
        method: DELETE
        description: Delete Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Event identifier
          required: true
    authentication:
      type: apikey
      key: X-Api-Key
      value: '{{env.SCOUT_RFP_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: events-events-rest
    port: 8080
    description: REST adapter for Workday Strategic Sourcing Events API — Events. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/events
      name: events
      description: REST surface for events.
      operations:
      - method: GET
        name: listevents
        description: List Events
        call: events-events.listevents
        with:
          page[size]: rest.page[size]
          filter: rest.filter
          include: rest.include
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createevent
        description: Create Event
        call: events-events.createevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/events/describe
      name: events-describe
      description: REST surface for events-describe.
      operations:
      - method: GET
        name: describeevent
        description: Describe Event Fields
        call: events-events.describeevent
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/events/{id}
      name: events-id
      description: REST surface for events-id.
      operations:
      - method: GET
        name: getevent
        description: Get Event
        call: events-events.getevent
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateevent
        description: Update Event
        call: events-events.updateevent
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteevent
        description: Delete Event
        call: events-events.deleteevent
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: events-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Strategic Sourcing Events API — Events. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-events
      description: List Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-events.listevents
      with:
        page[size]: tools.page[size]
        filter: tools.filter
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.
    - name: create-event
      description: Create Event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: events-events.createevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: describe-event-fields
      description: Describe Event Fields
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-events.describeevent
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event
      description: Get Event
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-events.getevent
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-event
      description: Update Event
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: events-events.updateevent
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-event
      description: Delete Event
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: events-events.deleteevent
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.