Labguru · Schema

createSession

Electronic Lab NotebookELNLIMSLaboratory Information ManagementBiotechLife SciencesResearch Data ManagementInventory ManagementExperiment ManagementREST APIGraphQL

Properties

Name Type Description
login string E-mail
password string password
account_id integer (optional) The account id to generate the token for
View JSON Schema on GitHub

JSON Schema

createSession.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createSession.json",
  "title": "createSession",
  "type": "object",
  "required": [
    "login",
    "password"
  ],
  "properties": {
    "login": {
      "type": "string",
      "description": "E-mail",
      "example": "[email protected]"
    },
    "password": {
      "type": "string",
      "description": "password"
    },
    "account_id": {
      "type": "integer",
      "description": "(optional) The account id to generate the token for"
    }
  }
}