Benchling · Schema

TokenCreate

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

Properties

Name Type Description
client_id string ID of client to request token for. Leave off if client ID and secret are being supplied through Authorization header.
client_secret string Leave off if client ID and secret are being supplied through Authorization header.
grant_type string
View JSON Schema on GitHub

JSON Schema

TokenCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/TokenCreate.json",
  "title": "TokenCreate",
  "properties": {
    "client_id": {
      "description": "ID of client to request token for. Leave off if client ID and secret are being supplied through Authorization header.\n",
      "type": "string"
    },
    "client_secret": {
      "description": "Leave off if client ID and secret are being supplied through Authorization header.\n",
      "type": "string"
    },
    "grant_type": {
      "enum": [
        "client_credentials"
      ],
      "example": "client_credentials",
      "type": "string"
    }
  },
  "required": [
    "grant_type"
  ],
  "type": "object"
}