Service Request Create Request

Request body for creating a new service request.

Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Properties

Name Type Description
service_id integer Identifier of the service to request.
project_id integer Identifier of the research project to bill.
quantity integer Number of units to request.
notes string Additional notes for the core facility.
View JSON Schema on GitHub

JSON Schema

ilab-operations-api-service-request-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agilent-technologies/refs/heads/main/json-schema/ilab-operations-api-service-request-create-request-schema.json",
  "title": "Service Request Create Request",
  "description": "Request body for creating a new service request.",
  "type": "object",
  "properties": {
    "service_id": {
      "type": "integer",
      "description": "Identifier of the service to request.",
      "example": 493801
    },
    "project_id": {
      "type": "integer",
      "description": "Identifier of the research project to bill.",
      "example": 987
    },
    "quantity": {
      "type": "integer",
      "description": "Number of units to request.",
      "example": 5
    },
    "notes": {
      "type": "string",
      "description": "Additional notes for the core facility.",
      "example": "RNA sequencing for experiment batch 12"
    }
  },
  "required": [
    "service_id"
  ]
}