Science Exchange experiment_type_fields API

ExperimentTypeFields resource.

OpenAPI Specification

science-exchange-experiment-type-fields-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Science Exchange Providers addresses experiment_type_fields 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: experiment_type_fields
  description: ExperimentTypeFields resource.
paths:
  /experiment_type_fields:
    get:
      operationId: getProvidersV1ExperimentTypeFields
      summary: List experiment type fields
      description: Returns the collection of experiment type fields visible to the authenticated provider.
      tags:
      - experiment_type_fields
      responses:
        '200':
          description: A list of experiment type fields.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
        '401':
          description: Missing or invalid access_token.
        '404':
          description: Resource not found.
  /experiment_type_fields/{id}:
    get:
      operationId: getProvidersV1ExperimentTypeFieldsId
      summary: Get a experiment type field
      description: Returns a single experiment type field by its identifier.
      tags:
      - experiment_type_fields
      parameters:
      - name: id
        in: path
        required: true
        description: The experiment type field identifier.
        schema:
          type: string
      responses:
        '200':
          description: The requested experiment type field.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Missing or invalid access_token.
        '404':
          description: Experiment type field 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)