Use the worksheets API to create, update, and query the worksheets in Workday Strategic Sourcing. ## Worksheet Object Scroll for all 46
Model Context Protocol servers that expose these APIs to AI agents.
Documented rate limits and quota policies.
Authentication, domain security, vulnerability disclosure, and trust-center signals.
Recommended x-agentic-access execution contracts for AI agents.
aid: scoutrfp
name: Scout RFP (Workday Strategic Sourcing)
description: Scout RFP is a strategic sourcing and supplier engagement platform founded in 2014 and acquired by Workday in
2019, where it now ships as Workday Strategic Sourcing. The product covers sourcing events (RFPs/RFIs/RFQs and auctions),
supplier management, contracts, projects, spend categories, awards, and supplier payments. Its public developer platform
exposes a JSON:API-conformant REST API across eleven versioned services — Suppliers, Events, Reports, Contracts, Projects,
Payments, Fields, Awards, Attachments, and Spend Categories — plus a SCIM 2.0 user-provisioning API. Authentication is by
company API key plus a per-user personal token, all calls are HTTPS/JSON:API, cursor paginated, and rate limited to five
requests per second. The legacy v3 API on api.scoutrfp.com was sunset April 18, 2025 in favor of the versioned services
on api.us.workdayspend.com (with EU and CA regional hosts).
url: https://raw.githubusercontent.com/api-evangelist/scoutrfp/refs/heads/main/apis.yml
x-type: company
x-source: vc-portfolio
x-backed-by:
- gv
x-tier: profiled
x-tier-reason: enriched-from-public-developer-platform
accessModel:
pricing: unknown
onboarding: self-serve
trial: false
try_now: false
public: false
label: Self-serve signup
confidence: medium
source:
- authentication
generated: '2026-07-22'
method: derived
image: https://www.workday.com/content/dam/web/en-us/images/social/workday-og-image.png
specificationVersion: '0.20'
created: '2026-07-17'
modified: '2026-07-21'
tags:
- Company
- Enterprise
- Procurement
- Strategic Sourcing
- Supplier Management
- Spend Management
- RFP
- Contracts
- SCIM
- JSON:API
maintainers:
- FN: Kin Lane
email: kin@apievangelist.com
- FN: APIs.json
email: info@apis.io
apis:
- aid: scoutrfp:scoutrfp-attachments-api
name: Scout RFP (Workday Strategic Sourcing) attachments API
description: "Use the attachments API to create, update, and delete the attachments in Workday Strategic Sourcing.\n\n##\
\ Working with Attachments\n\nCreating attachments for Workday Strategic Sourcing objects is a two-step process. First,\
\ you need to inform\nthe system about your intention to upload an attachment by issuing a \"Create an Attachment\" request,\n\
consisting of the file name and a link to the object to which you are adding an attachment. The link\nis represented by\
\ a relationship object containing an object ID and its type.\n\nIn the response you will receive a link in the `upload_url`\
\ attributes, along with required HTTP headers\nto send with your file. You will need to upload your file as a binary\
\ stream in a PUT request into the\nspecified URL, making sure the required headers are present. Here is how the workflow\
\ might look\nlike when triggered from a console:\n\n```bash\n$ 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 -X POST \\\n -d '\n {\n \"data\": {\n \"type\": \"attachments\",\n \
\ \"attributes\": {\n \"title\": \"My Interesting Document\",\n \"file_name\": \"\
Some Interesting File.pdf\"\n },\n \"relationships\": {\n \"contract\": {\n \
\ \"data\": {\n \"id\": 1,\n \"type\": \"contracts\"\n \
\ }\n }\n }\n }\n }\n ' \\\n \"https://api.us.workdayspend.com/services/attachments/v1/attachments\"\
\n\n{\n \"data\": {\n \"id\": \"1\",\n \"type\": \"attachments\",\n \"attributes\": {\n \
\ \"title\": \"My Interesting Document\",\n \"file_size\": null,\n \"upload_url\": \"https://upload.s3.amazonaws.com/uploads/contract/1/hex/file.pdf?some=very&long=url\"\
,\n \"upload_headers\": [\n {\n \"name\": \"Content-Type\",\n \
\ \"value\": \"application/octet-stream\"\n },\n {\n \"name\"\
: \"x-amz-acl\",\n \"value\": \"private\"\n },\n {\n \
\ \"name\": \"x-amz-server-side-encryption\",\n \"value\": \"AES256\"\n },\n \
\ {\n \"name\": \"Content-Disposition\",\n \"value\": \"attachment\"\n\
\ }\n ]\n }\n }\n}\n\n$ curl -X PUT \\\n --data \"@file.pdf\" \\\n -H \"Content-Type:\
\ application/octet-stream\" \\\n -H \"x-amz-acl: private\" \\\n -H \"x-amz-server-side-encryption: AES256\" \\\n\
\ -H \"Content-Disposition: attachment\" \\\n https://upload.s3.amazonaws.com/uploads/contract/1/hex/file.pdf?some=very&long=url\n\
```\n\nThe upload URL expires within 15 minutes after issuing. Please note that you will not be able to upload\nthe data\
\ file to the attachment object after that. An automated system will purge all partial uploads\nafter a certain period\
\ (usually within 30-60 minutes after creation) to prevent orphan records from\noverflowing the system.\n\n**Please Note**:\
\ The list of headers and their values might change at any time, so when you're\nimplementing an integration with the\
\ Workday Strategic Sourcing system, make sure to include all of the HTTP headers\nreturned from the attachments endpoint.\n\
\n## Attachment Object\n\n<SchemaDefinition schemaRef=\"#/components/schemas/Attachment\" showReadOnly={true} showWriteOnly={true}\
\ />"
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- attachments
properties:
- type: OpenAPI
url: openapi/scoutrfp-attachments-api-openapi.yml
- aid: scoutrfp:scoutrfp-award-line-items-api
name: Scout RFP (Workday Strategic Sourcing) award_line_items API
description: 'Use the Award Line Items API to query the Award Line Items in Workday Strategic Sourcing.
Award Line Items are used for procurement.
## Award Line Item Object
<SchemaDefinition schemaRef="#/components/schemas/AwardLineItem" exampleRef="#/components/examples/AwardLineItem" showReadOnly={true}
showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- award_line_items
properties:
- type: OpenAPI
url: openapi/scoutrfp-award-line-items-api-openapi.yml
- aid: scoutrfp:scoutrfp-awards-api
name: Scout RFP (Workday Strategic Sourcing) awards API
description: 'Use the Awards API to query the Awards in Workday Strategic Sourcing.
Awards are used for procurement.
## Award Object
<SchemaDefinition schemaRef="#/components/schemas/Award" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- awards
properties:
- type: OpenAPI
url: openapi/scoutrfp-awards-api-openapi.yml
- aid: scoutrfp:scoutrfp-bid-line-items-api
name: Scout RFP (Workday Strategic Sourcing) bid_line_items API
description: 'Use the bid line items API to query the bid line items in Workday Strategic Sourcing.
## Bid Line Item Object
<SchemaDefinition schemaRef="#/components/schemas/BidLineItem" exampleRef="#/components/examples/BidLineItem" showReadOnly={true}
showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- bid_line_items
properties:
- type: OpenAPI
url: openapi/scoutrfp-bid-line-items-api-openapi.yml
- aid: scoutrfp:scoutrfp-bids-api
name: Scout RFP (Workday Strategic Sourcing) bids API
description: 'Use the bids API to query the bids in Workday Strategic Sourcing.
Only bids for events of type `RFP` are supported.
## Bid Object
<SchemaDefinition schemaRef="#/components/schemas/Bid" exampleRef="#/components/examples/Bid" showReadOnly={true} showWriteOnly={true}
/>'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- bids
properties:
- type: OpenAPI
url: openapi/scoutrfp-bids-api-openapi.yml
- aid: scoutrfp:scoutrfp-contact-types-api
name: Scout RFP (Workday Strategic Sourcing) contact_types API
description: 'Use the contact types API to create, update, and query the contact types in Workday Strategic Sourcing.
## ContactType Object
<SchemaDefinition schemaRef="#/components/schemas/ContactType" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- contact_types
properties:
- type: OpenAPI
url: openapi/scoutrfp-contact-types-api-openapi.yml
- aid: scoutrfp:scoutrfp-contract-milestone-reports-api
name: Scout RFP (Workday Strategic Sourcing) contract_milestone_reports API
description: This report returns a list of contract milestone report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- contract_milestone_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-contract-milestone-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-contract-reports-api
name: Scout RFP (Workday Strategic Sourcing) contract_reports API
description: This report returns a list of contract report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- contract_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-contract-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-contract-types-api
name: Scout RFP (Workday Strategic Sourcing) contract_types API
description: 'Use the contract types API to query the contract types in Workday Strategic Sourcing.
Contract Types are used in the contract resource. On POST and PATCH related endpoints for this resource a contract_type_id
can be added to set the contract type. The contract_type_id is a foreign key for the contract_types resource''s id.
## Contract Type Object
<SchemaDefinition schemaRef="#/components/schemas/ContractType" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- contract_types
properties:
- type: OpenAPI
url: openapi/scoutrfp-contract-types-api-openapi.yml
- aid: scoutrfp:scoutrfp-contracts-api
name: Scout RFP (Workday Strategic Sourcing) contracts API
description: 'Use the contracts API to create, update, and query the contracts in Workday Strategic Sourcing.
## Contract Object
<SchemaDefinition schemaRef="#/components/schemas/Contract" exampleRef="#/components/examples/Contract" showReadOnly={true}
showWriteOnly={true} />
## Docusign Envelope Object
<SchemaDefinition schemaRef="#/components/schemas/DocusignEnvelope" showReadOnly={true} showWriteOnly={true} />
## Adobe Sign Agreement Object
<SchemaDefinition schemaRef="#/components/schemas/AdobeSignAgreement" showReadOnly={true} showWriteOnly={true} />
## Adobe Sign Document Object
<SchemaDefinition schemaRef="#/components/schemas/AdobeSignDocument" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- contracts
properties:
- type: OpenAPI
url: openapi/scoutrfp-contracts-api-openapi.yml
- aid: scoutrfp:scoutrfp-discovery-api
name: Scout RFP (Workday Strategic Sourcing) discovery API
description: Endpoints to facilitate discovery of SCIM service provider features
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- discovery
properties:
- type: OpenAPI
url: openapi/scoutrfp-discovery-api-openapi.yml
- aid: scoutrfp:scoutrfp-event-reports-api
name: Scout RFP (Workday Strategic Sourcing) event_reports API
description: This report returns a list of event report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- event_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-event-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-event-supplier-companies-api
name: Scout RFP (Workday Strategic Sourcing) event_supplier_companies API
description: Use the event supplier companies API to manage event suppliers.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- event_supplier_companies
properties:
- type: OpenAPI
url: openapi/scoutrfp-event-supplier-companies-api-openapi.yml
- aid: scoutrfp:scoutrfp-event-supplier-contacts-api
name: Scout RFP (Workday Strategic Sourcing) event_supplier_contacts API
description: 'Use the event supplier contacts API to manage event suppliers. This API provides 2 advantages over the event
supplier companies APIs:
- It allows specifying the supplier contact to be associated/removed from an event.
- It allows specifying multiple contacts for a given supplier.'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- event_supplier_contacts
properties:
- type: OpenAPI
url: openapi/scoutrfp-event-supplier-contacts-api-openapi.yml
- aid: scoutrfp:scoutrfp-event-templates-api
name: Scout RFP (Workday Strategic Sourcing) event_templates API
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} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- event_templates
properties:
- type: OpenAPI
url: openapi/scoutrfp-event-templates-api-openapi.yml
- aid: scoutrfp:scoutrfp-events-api
name: Scout RFP (Workday Strategic Sourcing) events API
description: 'Use the events API to create, update, and query the events in Workday Strategic Sourcing.
## Event Object
<SchemaDefinition schemaRef="#/components/schemas/Event" exampleRef="#/components/examples/Event" showReadOnly={true}
showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- events
properties:
- type: OpenAPI
url: openapi/scoutrfp-events-api-openapi.yml
- aid: scoutrfp:scoutrfp-field-groups-api
name: Scout RFP (Workday Strategic Sourcing) field_groups API
description: 'Use the fields API to create, update, and query the custom fields groups in Workday Strategic Sourcing.
Custom field groups act as a collection of custom fields. Every newly made custom field
with requires a custom field group (except for the fields with `target_object` set to `RFP`).
## Field Group Object
<SchemaDefinition schemaRef="#/components/schemas/FieldGroup" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- field_groups
properties:
- type: OpenAPI
url: openapi/scoutrfp-field-groups-api-openapi.yml
- aid: scoutrfp:scoutrfp-field-options-api
name: Scout RFP (Workday Strategic Sourcing) field_options API
description: 'Use the fields API to create, update, and query the custom fields options in Workday Strategic Sourcing.
Custom field options exist for single select and multiple select field types.
## Field Option Object
<SchemaDefinition schemaRef="#/components/schemas/FieldOption" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- field_options
properties:
- type: OpenAPI
url: openapi/scoutrfp-field-options-api-openapi.yml
- aid: scoutrfp:scoutrfp-fields-api
name: Scout RFP (Workday Strategic Sourcing) fields API
description: 'Use the fields API to create, update, and query the custom fields in Workday Strategic Sourcing.
## Field Object
<SchemaDefinition schemaRef="#/components/schemas/Field" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- fields
properties:
- type: OpenAPI
url: openapi/scoutrfp-fields-api-openapi.yml
- aid: scoutrfp:scoutrfp-line-items-api
name: Scout RFP (Workday Strategic Sourcing) line_items API
description: 'Use the line items API to create, update, and query the worksheet line items in Workday Strategic Sourcing.
## Line Item Object
<SchemaDefinition schemaRef="#/components/schemas/LineItem" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- line_items
properties:
- type: OpenAPI
url: openapi/scoutrfp-line-items-api-openapi.yml
- aid: scoutrfp:scoutrfp-payment-currencies-api
name: Scout RFP (Workday Strategic Sourcing) payment_currencies API
description: 'Use the payment currencies API to create, update, and query the payment currencies in Workday Strategic Sourcing.
## Payment Currency Object
<SchemaDefinition schemaRef="#/components/schemas/PaymentCurrency" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- payment_currencies
properties:
- type: OpenAPI
url: openapi/scoutrfp-payment-currencies-api-openapi.yml
- aid: scoutrfp:scoutrfp-payment-terms-api
name: Scout RFP (Workday Strategic Sourcing) payment_terms API
description: 'Use the payment terms API to create, update, and query the payment terms in Workday Strategic Sourcing.
## Payment Term Object
<SchemaDefinition schemaRef="#/components/schemas/PaymentTerm" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- payment_terms
properties:
- type: OpenAPI
url: openapi/scoutrfp-payment-terms-api-openapi.yml
- aid: scoutrfp:scoutrfp-payment-types-api
name: Scout RFP (Workday Strategic Sourcing) payment_types API
description: 'Use the payment types API to create, update, and query the payment types in Workday Strategic Sourcing.
## Payment Type Object
<SchemaDefinition schemaRef="#/components/schemas/PaymentType" showReadOnly={true} showWriteOnly={true} /> ```'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- payment_types
properties:
- type: OpenAPI
url: openapi/scoutrfp-payment-types-api-openapi.yml
- aid: scoutrfp:scoutrfp-performance-review-answer-reports-api
name: Scout RFP (Workday Strategic Sourcing) performance_review_answer_reports API
description: This report returns a list of Performance Review Answer report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- performance_review_answer_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-performance-review-answer-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-performance-review-reports-api
name: Scout RFP (Workday Strategic Sourcing) performance_review_reports API
description: This report returns a list of Performance Review report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- performance_review_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-performance-review-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-project-milestone-reports-api
name: Scout RFP (Workday Strategic Sourcing) project_milestone_reports API
description: This report returns a list of Project Milestone report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- project_milestone_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-project-milestone-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-project-reports-api
name: Scout RFP (Workday Strategic Sourcing) project_reports API
description: This report returns a list of Project report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- project_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-project-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-project-supplier-companies-api
name: Scout RFP (Workday Strategic Sourcing) project_supplier_companies API
description: Use the project supplier companies API to manage project suppliers.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- project_supplier_companies
properties:
- type: OpenAPI
url: openapi/scoutrfp-project-supplier-companies-api-openapi.yml
- aid: scoutrfp:scoutrfp-project-supplier-contacts-api
name: Scout RFP (Workday Strategic Sourcing) project_supplier_contacts API
description: 'Use the project supplier contacts API to manage project suppliers. This API provides 2 advantages over the
project supplier companies APIs:
- It allows specifying the supplier contact to be associated/removed from a project.
- It allows specifying multiple contacts for a given supplier.'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- project_supplier_contacts
properties:
- type: OpenAPI
url: openapi/scoutrfp-project-supplier-contacts-api-openapi.yml
- aid: scoutrfp:scoutrfp-project-types-api
name: Scout RFP (Workday Strategic Sourcing) project_types API
description: 'Use the project types API to query the project types in Workday Strategic Sourcing.
Project Types are used in the project resource. On POST and PATCH related endpoints for this resource a project_type_id
can be added to set the project type. The project_type_id is a foreign key for the project_types resource''s id.
## Project Type Object
<SchemaDefinition schemaRef="#/components/schemas/ProjectTypeModel" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- project_types
properties:
- type: OpenAPI
url: openapi/scoutrfp-project-types-api-openapi.yml
- aid: scoutrfp:scoutrfp-projects-api
name: Scout RFP (Workday Strategic Sourcing) projects API
description: 'Use the projects API to create, update, and query the projects in Workday Strategic Sourcing.
## Project Object
<SchemaDefinition schemaRef="#/components/schemas/Project" exampleRef="#/components/examples/Project" showReadOnly={true}
showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- projects
properties:
- type: OpenAPI
url: openapi/scoutrfp-projects-api-openapi.yml
- aid: scoutrfp:scoutrfp-savings-reports-api
name: Scout RFP (Workday Strategic Sourcing) savings_reports API
description: This report returns a list of Savings report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- savings_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-savings-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-spend-categories-api
name: Scout RFP (Workday Strategic Sourcing) spend_categories API
description: 'Use the Spend Categories API to create, update, and query the Spend Categories in Workday Strategic Sourcing.
Spend Categories are used in both the project and contract resources. On POST and PATCH related endpoints for those resources
a spend_category_id can be added to attach a spend category. The spend_category_id is a foreign key for the spend_categories
resource''s id.
## Spend Category Object
<SchemaDefinition schemaRef="#/components/schemas/SpendCategory" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- spend_categories
properties:
- type: OpenAPI
url: openapi/scoutrfp-spend-categories-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-categories-api
name: Scout RFP (Workday Strategic Sourcing) supplier_categories API
description: 'Use the supplier categories API to create, update, and query the supplier categories in Workday Strategic
Sourcing.
## Supplier Category Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierCategory" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_categories
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-categories-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-classifications-api
name: Scout RFP (Workday Strategic Sourcing) supplier_classifications API
description: '## Supplier Classification Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierClassification" exampleRef="#/components/examples/SupplierClassification"
showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_classifications
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-classifications-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-companies-api
name: Scout RFP (Workday Strategic Sourcing) supplier_companies API
description: 'Use the supplier companies API to create, update, and query the suppliers in Workday Strategic Sourcing.
## Supplier Company Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierCompany" exampleRef="#/components/examples/SupplierCompany"
showReadOnly={true} showWriteOnly={true} />
## Supplier Classification Value Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierClassificationValue" exampleRef="#/components/examples/SupplierClassificationValue"
showReadOnly={true} showWriteOnly={true} />
## Supplier Classification Field Value Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierClassificationFieldValue" exampleRef="#/components/examples/SupplierClassificationFieldValue"
showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_companies
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-companies-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-company-risks-api
name: Scout RFP (Workday Strategic Sourcing) supplier_company_risks API
description: 'Use the supplier company risks API to create, update, and query the supplier company risks in Workday Strategic
Sourcing.
## Supplier Company Risk Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierCompanyRisk" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_company_risks
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-company-risks-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-company-segmentation-statuses-api
name: Scout RFP (Workday Strategic Sourcing) supplier_company_segmentation_statuses API
description: 'Use the supplier company segmentation statuses API to create, update, and query the supplier company segmentation
statuses in Workday Strategic Sourcing.
## Supplier Company Segmentation Status Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierCompanySegmentationStatus" showReadOnly={true} showWriteOnly={true}
/>'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_company_segmentation_statuses
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-company-segmentation-statuses-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-company-segmentations-api
name: Scout RFP (Workday Strategic Sourcing) supplier_company_segmentations API
description: 'Use the supplier company segmentations API to create, update, and query the supplier company segmentations
in Workday Strategic Sourcing.
## Supplier Company Segmentation Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierCompanySegmentation" showReadOnly={true} showWriteOnly={true}
/>'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_company_segmentations
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-company-segmentations-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-contacts-api
name: Scout RFP (Workday Strategic Sourcing) supplier_contacts API
description: '## Supplier Contact Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierContact" exampleRef="#/components/examples/SupplierContact"
showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_contacts
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-contacts-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-groups-api
name: Scout RFP (Workday Strategic Sourcing) supplier_groups API
description: 'Use the supplier groups API to create, update, and query the supplier groups in Workday Strategic Sourcing.
## Supplier Group Object
<SchemaDefinition schemaRef="#/components/schemas/SupplierGroup" showReadOnly={true} showWriteOnly={true} />'
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_groups
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-groups-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-reports-api
name: Scout RFP (Workday Strategic Sourcing) supplier_reports API
description: This report returns a list of Supplier report entries.
humanURL: https://apidocs.workdayspend.com/services/suppliers/v1.html
baseURL: https://api.us.workdayspend.com/services/suppliers/v1
tags:
- supplier_reports
properties:
- type: OpenAPI
url: openapi/scoutrfp-supplier-reports-api-openapi.yml
- aid: scoutrfp:scoutrfp-supplier-review-reports-api
name: Scout RFP (Workday Strategic Sourcing
# --- truncated at 32 KB (35 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/scoutrfp/refs/heads/main/apis.yml