Scout RFP (Workday Strategic Sourcing) suppliers API

This report returns a list of Suppliers.

Operations 2

GET /suppliers All suppliers #
GET /suppliers/{supplier_id} Single supplier #

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-suppliers-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-suppliers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Workday Strategic Sourcing attachments Suppliers 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: suppliers
  x-displayName: Suppliers
  description: 'This report returns a list of Suppliers.

    '
paths:
  /suppliers:
    get:
      tags:
      - suppliers
      description: 'Returns a list of all suppliers.


        **Query Params**


        | **Param**    |    |

        | ------------ | -- |

        | `include`  | Include supplier contacts with `include=contacts` |

        | `sort`     | Sort the suppliers. Supported values: `name`, `-name`, `created_at`, `-created_at`. |

        '
      operationId: All suppliers
      summary: All suppliers
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                allOf:
                - type: object
                  properties:
                    data:
                      type: array
                      items:
                        $ref: '#/components/schemas/Supplier'
                - $ref: '#/components/schemas/Pagination'
              examples:
                success:
                  $ref: '#/components/examples/index_response-10'
        '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     -H \"Accept: application/vnd.api+json,application/vnd.api+json; com.workdayspend.api.version=2018-04-01\"\n     \"https://api.us.workdayspend.com/suppliers\"\n"
  /suppliers/{supplier_id}:
    get:
      tags:
      - suppliers
      description: 'Returns a single supplier.


        You can optionally include the following query parameter to include supplier contacts in the response:


        `suppliers/1?include=contacts`

        '
      operationId: Single supplier
      summary: Single supplier
      parameters:
      - name: supplier_id
        in: path
        description: Unique Supplier 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/Supplier'
              examples:
                success:
                  $ref: '#/components/examples/show_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     -H \"Accept: application/vnd.api+json,application/vnd.api+json; com.workdayspend.api.version=2018-04-01\"\n     \"https://api.us.workdayspend.com/suppliers/{supplier_id}\"\n"
components:
  schemas:
    NextPageLink:
      type: object
      properties:
        next:
          type:
          - string
          - 'null'
          format: url
          description: Link to the next results page.
    SupplierContactReference:
      type: object
      required:
      - name
      - id
      properties:
        data:
          properties:
            type:
              $ref: '#/components/schemas/SupplierContactType'
            id:
              $ref: '#/components/schemas/SupplierContactId'
    PaginationLinks:
      type: object
      description: List of pagination links.
      allOf:
      - $ref: '#/components/schemas/NextPageLink'
      - $ref: '#/components/schemas/PrevPageLink'
    Supplier:
      type: object
      required:
      - name
      - id
      properties:
        type:
          $ref: '#/components/schemas/SupplierType'
        id:
          $ref: '#/components/schemas/SupplierId'
        attributes:
          $ref: '#/components/schemas/SupplierAttributes'
        relationships:
          properties:
            contacts:
              type: array
              items:
                $ref: '#/components/schemas/SupplierContactReference'
    SupplierAttributes:
      description: Supplier attributes. See example response.
      properties:
        name:
          type: string
        custom_fields:
          type: array
          items:
            properties:
              name:
                description: Name of custom field
              value:
                description: Value of custom field
    PrevPageLink:
      type: object
      properties:
        prev:
          type:
          - string
          - 'null'
          format: url
          description: Link to the previous results page.
    SupplierId:
      description: Supplier identifier string.
      example: 1
    SupplierContactType:
      description: Object type, should always be `supplier_contacts`.
      example: supplier_contacts
    Pagination:
      type: object
      properties:
        links:
          $ref: '#/components/schemas/PaginationLinks'
    SupplierType:
      description: Object type, should always be `suppliers`.
      example: suppliers
    SupplierContactId:
      description: Supplier contact identifier string.
      example: 1
  examples:
    show_response:
      value:
        data:
          id: '177'
          type: suppliers
          attributes:
            name: Hubschrauber LLC
            custom_fields:
            - name: Country of incorporation
              value: France
            - name: Supplier options
              value:
              - 'Option #1'
              - 'Option #2'
            - name: Foundation year
              value: 2015
            - name: Logo
              value:
              - title: The logo file
                file_type: img
                url: /downloads/1
          relationships:
            contacts:
              data:
              - id: '59'
                type: supplier_contacts
    index_response-10:
      value:
        data:
        - id: '3'
          type: suppliers
          attributes:
            name: Hubschrauber LLC
          relationships:
            contacts:
              data:
              - id: '3'
                type: supplier_contacts
        - id: '1'
          type: suppliers
          attributes:
            name: Schnappi Group
          relationships:
            contacts:
              data: []
        - id: '2'
          type: suppliers
          attributes:
            name: Trippy Cow Inc
          relationships:
            contacts:
              data:
              - id: '2'
                type: supplier_contacts
              - id: '1'
                type: supplier_contacts
        links:
          prev: null
          next: null
  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