Benchling · Schema

OAuthBadRequestError

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

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

OAuthBadRequestError.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/OAuthBadRequestError.json",
  "title": "OAuthBadRequestError",
  "properties": {
    "error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BaseError"
        },
        {
          "properties": {
            "type": {
              "enum": [
                "invalid_request",
                "invalid_grant",
                "unauthorized_client",
                "unsupported_grant_type"
              ],
              "type": "string"
            }
          }
        }
      ]
    }
  },
  "type": "object"
}