Scout RFP (Workday Strategic Sourcing) event_templates API

Use the contract types API to query the event templates in Workday Strategic Sourcing. Event Templates are used as a blueprint for newly created events. ## Event Template Object

Operations 2

GET /event_templates List Event Templates #
GET /event_templates/{id} Get an Event Template #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/scoutrfp-event-templates-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

scoutrfp-event-templates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Workday Strategic Sourcing attachments Event Templates API
  version: '1.0'
  description: '<span id="section/Authentication/api_key" data-section-id="section/Authentication/api_key"></span>

    <span id="section/Authentication/user_token" data-section-id="section/Authentication/user_token"></span>

    <span id="section/Authentication/user_email" data-section-id="section/Authentication/user_email"></span>

    '
servers:
- url: https://api.us.workdayspend.com/services/attachments/v1
  description: Production Server
- url: https://api.sandbox.us.workdayspend.com/services/attachments/v1
  description: Sandbox Server
security:
- api_key: []
  user_token: []
  user_email: []
tags:
- name: event_templates
  x-displayName: Event Templates
  description: 'Use the contract types API to query the event templates in Workday Strategic Sourcing.


    Event Templates are used as a blueprint for newly created events.


    ## Event Template Object


    <SchemaDefinition schemaRef="#/components/schemas/EventTemplateModel" showReadOnly={true} showWriteOnly={true} />

    '
paths:
  /event_templates:
    get:
      tags:
      - event_templates
      description: Returns a list of all event templates.
      operationId: List Event Templates
      summary: List Event Templates
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                allOf:
                - type: object
                  properties:
                    data:
                      type: array
                      items:
                        $ref: '#/components/schemas/EventTemplateModel'
                    meta:
                      type: object
                      description: Result set metadata.
                      properties:
                        count:
                          type: integer
                          description: Number of pages in the result set.
                    links:
                      $ref: '#/components/schemas/SelfLink'
              examples:
                success:
                  $ref: '#/components/examples/index_response'
        '401':
          description: Unauthorized
      x-codeSamples:
      - label: Curl
        source: "curl -H \"X-Api-Key: ${COMPANY_KEY}\" \\\n     -H \"X-User-Token: ${USER_TOKEN}\" \\\n     -H \"X-User-Email: ${USER_EMAIL}\" \\\n     -H \"Content-Type: application/vnd.api+json\" \\\n     \"https://api.us.workdayspend.com/services/events/v1/event_templates\"\n"
  /event_templates/{id}:
    get:
      tags:
      - event_templates
      description: 'Retrieves the details of an existing event template.

        '
      operationId: Get an Event Template
      summary: Get an Event Template
      parameters:
      - name: id
        in: path
        description: Unique event template identifier.
        required: true
        schema:
          type: integer
        example: 1
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/EventTemplateModel'
              examples:
                success:
                  $ref: '#/components/examples/show_response'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      x-codeSamples:
      - label: Curl
        source: "curl -H \"X-Api-Key: ${COMPANY_KEY}\" \\\n     -H \"X-User-Token: ${USER_TOKEN}\" \\\n     -H \"X-User-Email: ${USER_EMAIL}\" \\\n     -H \"Content-Type: application/vnd.api+json\" \\\n     \"https://api.us.workdayspend.com/services/events/v1/event_templates/1\"\n"
components:
  examples:
    show_response:
      value:
        data:
          type: event_templates
          id: '1'
          attributes:
            title: The Event Template
            event_type: RFP
          links:
            self: https://api.us.workdayspend.com/services/events/v1/event_templates/1
    index_response:
      value:
        meta:
          count: 2
        data:
        - type: event_templates
          id: '1'
          attributes:
            title: 'Event Template #1'
            event_type: RFP
          links:
            self: https://api.us.workdayspend.com/services/events/v1/event_templates/1
        - type: event_templates
          id: '2'
          attributes:
            title: 'Event Template #2'
            event_type: PERFORMANCE_REVIEW_EVENT
          links:
            self: https://api.us.workdayspend.com/services/events/v1/event_templates/2
        links:
          self: https://api.us.workdayspend.com/services/events/v1/event_templates
  schemas:
    EventTemplateBase:
      title: EventTemplate
      type: object
      required:
      - type
      - id
      properties:
        type:
          $ref: '#/components/schemas/EventTemplateType'
        id:
          $ref: '#/components/schemas/EventTemplateId'
    SelfLink:
      type: object
      properties:
        self:
          type: string
          format: url
          description: Normalized link to the resource.
    EventTemplateModel:
      allOf:
      - $ref: '#/components/schemas/EventTemplateBase'
      - type: object
        properties:
          attributes:
            $ref: '#/components/schemas/EventTemplateAttributes'
          links:
            $ref: '#/components/schemas/ResourceLinks'
    EventTemplateType:
      type: string
      description: Object type, should always be `event_templates`.
      example: event_templates
    ResourceLinks:
      type: object
      description: List of related links.
      allOf:
      - $ref: '#/components/schemas/SelfLink'
    EventTypeEnum:
      type: string
      enum:
      - RFP
      - AUCTION
      - AUCTION_WITH_LOTS
      - AUCTION_LOT
      - PERFORMANCE_REVIEW_EVENT
      - PERFORMANCE_REVIEW_SCORE_CARD_ONLY_EVENT
      - SUPPLIER_REVIEW_EVENT
      - SUPPLIER_REVIEW_MASTER_EVENT
      description: Event type.
      example: RFP
    EventTemplateId:
      type: integer
      description: Event template identifier string.
      example: 1
    EventTemplateAttributes:
      type: object
      description: Event template attributes.
      required:
      - name
      - shortcode
      properties:
        title:
          type: string
          maxLength: 255
          description: Event template title.
          example: My Event Template
        event_type:
          $ref: '#/components/schemas/EventTypeEnum'
  securitySchemes:
    api_key:
      type: apiKey
      name: X-Api-Key
      in: header
      description: Company API key.
    user_token:
      type: apiKey
      name: X-User-Token
      in: header
      description: User token.
    user_email:
      type: apiKey
      name: X-User-Email
      in: header
      description: User email.
x-tagGroups:
- name: Getting Started
  tags:
  - support
  - servers
  - api_specification
  - authentication
  - rate_limiting
- name: Attachments
  tags:
  - attachments