Scout RFP Event Suppliers API

The Event Suppliers API from Scout RFP — 2 operation(s) for event suppliers.

OpenAPI Specification

scout-rfp-event-suppliers-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Workday Strategic Sourcing Events Bids Event Suppliers API
  description: The Events API (formerly Scout RFP Events API) enables management of sourcing events including RFPs, RFIs, and reverse auctions within the Workday Strategic Sourcing platform. Supports creating events from templates, managing suppliers, worksheets, line items, and collecting bids.
  version: '1.3'
  contact:
    url: https://apidocs.workdayspend.com/
servers:
- url: https://api.us.workdayspend.com/services/events/v1
  description: US Production
- url: https://api.sandbox.us.workdayspend.com/services/events/v1
  description: US Sandbox
- url: https://api.eu.workdayspend.com/services/events/v1
  description: EU Production
- url: https://api.ca.workdayspend.com/services/events/v1
  description: CA Production
security:
- ApiKeyAuth: []
  UserTokenAuth: []
  UserEmailAuth: []
tags:
- name: Event Suppliers
paths:
  /events/{event_id}/relationships/supplier_companies:
    post:
      operationId: addSupplierCompanies
      summary: Add Supplier Companies
      description: Add supplier companies to a sourcing event by supplier ID.
      tags:
      - Event Suppliers
      parameters:
      - name: event_id
        in: path
        required: true
        description: Event identifier
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupplierRelationshipRequest'
      responses:
        '200':
          description: Suppliers added successfully
    delete:
      operationId: removeSupplierCompanies
      summary: Remove Supplier Companies
      description: Remove supplier companies from a sourcing event.
      tags:
      - Event Suppliers
      parameters:
      - name: event_id
        in: path
        required: true
        description: Event identifier
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupplierRelationshipRequest'
      responses:
        '200':
          description: Suppliers removed successfully
  /events/{event_id}/relationships/supplier_contacts:
    post:
      operationId: addSupplierContacts
      summary: Add Supplier Contacts
      description: Add supplier contacts to a sourcing event.
      tags:
      - Event Suppliers
      parameters:
      - name: event_id
        in: path
        required: true
        description: Event identifier
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupplierRelationshipRequest'
      responses:
        '200':
          description: Contacts added successfully
    delete:
      operationId: removeSupplierContacts
      summary: Remove Supplier Contacts
      description: Remove supplier contacts from a sourcing event.
      tags:
      - Event Suppliers
      parameters:
      - name: event_id
        in: path
        required: true
        description: Event identifier
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupplierRelationshipRequest'
      responses:
        '200':
          description: Contacts removed successfully
components:
  schemas:
    SupplierRelationshipRequest:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              type:
                type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Company-wide API key
    UserTokenAuth:
      type: apiKey
      in: header
      name: X-User-Token
      description: User-specific API token
    UserEmailAuth:
      type: apiKey
      in: header
      name: X-User-Email
      description: User email address