Benchling · Schema

TokenResponse

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

Properties

Name Type Description
access_token string
expires_in integer Number of seconds that token is valid for
token_type string
View JSON Schema on GitHub

JSON Schema

TokenResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/TokenResponse.json",
  "title": "TokenResponse",
  "properties": {
    "access_token": {
      "example": "eyJ...",
      "type": "string"
    },
    "expires_in": {
      "description": "Number of seconds that token is valid for",
      "example": 900,
      "type": "integer"
    },
    "token_type": {
      "enum": [
        "Bearer"
      ],
      "example": "Bearer",
      "type": "string"
    }
  },
  "type": "object"
}