Science Exchange rfq_collaborators API

RFQCollaborators resource.

OpenAPI Specification

science-exchange-rfq-collaborators-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Science Exchange Providers addresses rfq_collaborators API
  version: v1
  description: Read API for scientific-service providers (suppliers) on the Science Exchange R&D marketplace. Exposes a provider's RFQs, quotes, services, facilities, line items, ratings, tags, users and related resources. Derived from the first-party se_providers_api_client Ruby wrapper (github.com/scienceexchange/se_providers_api_client); authoritative reference at https://demo.scienceexchange.com/api-docs/providers.
  contact:
    name: Science Exchange Engineering
    email: devs@scienceexchange.com
    url: https://www.scienceexchange.com
  license:
    name: Proprietary
  x-derived-from: https://github.com/scienceexchange/se_providers_api_client
servers:
- url: https://www.scienceexchange.com/api/providers/v1
  description: Production
security:
- access_token: []
tags:
- name: rfq_collaborators
  description: RFQCollaborators resource.
paths:
  /rfq_collaborators:
    get:
      operationId: getProvidersV1RFQCollaborators
      summary: List rfq collaborators
      description: Returns the collection of rfq collaborators visible to the authenticated provider.
      tags:
      - rfq_collaborators
      responses:
        '200':
          description: A list of rfq collaborators.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
        '401':
          description: Missing or invalid access_token.
        '404':
          description: Resource not found.
  /rfq_collaborators/{id}:
    get:
      operationId: getProvidersV1RFQCollaboratorsId
      summary: Get a RFQ collaborator
      description: Returns a single RFQ collaborator by its identifier.
      tags:
      - rfq_collaborators
      parameters:
      - name: id
        in: path
        required: true
        description: The RFQ collaborator identifier.
        schema:
          type: string
      responses:
        '200':
          description: The requested RFQ collaborator.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Missing or invalid access_token.
        '404':
          description: Rfq collaborator not found.
components:
  securitySchemes:
    access_token:
      type: apiKey
      in: query
      name: access_token
      description: Provider API key passed as the access_token query parameter on every request.
x-apievangelist:
  generated: '2026-07-21'
  method: derived
  source: https://github.com/scienceexchange/se_providers_api_client (DSL endpoint definitions)