Benchling · Schema

PrintLabels

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
containerIds array List of IDs of containers that will have labels printed (one label will be printed per container).
labelTemplateId string ID of label template to use (same template will be used for all labels printed).
printerId string ID of printer to use (same printer will be used for all labels printed).
View JSON Schema on GitHub

JSON Schema

PrintLabels.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/PrintLabels.json",
  "title": "PrintLabels",
  "additionalProperties": false,
  "properties": {
    "containerIds": {
      "description": "List of IDs of containers that will have labels printed (one label will be printed per container).\n",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "labelTemplateId": {
      "description": "ID of label template to use (same template will be used for all labels printed).\n",
      "example": "lbltmp_lCpY5Qvh",
      "type": "string"
    },
    "printerId": {
      "description": "ID of printer to use (same printer will be used for all labels printed).\n",
      "example": "print_YJQkilOJ",
      "type": "string"
    }
  },
  "required": [
    "containerIds",
    "labelTemplateId",
    "printerId"
  ],
  "type": "object"
}