Scout RFP · Capability

Workday Strategic Sourcing Events API — Event Templates

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

Run with Naftiko Scout RfpEvent Templates

What You Can Do

GET
Listeventtemplates — List Event Templates
/v1/event-templates
GET
Geteventtemplate — Get Event Template
/v1/event-templates/{id}

MCP Tools

list-event-templates

List Event Templates

read-only idempotent
get-event-template

Get Event Template

read-only idempotent

Capability Spec

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