Webex · Schema

LoginRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
email string Email for the RedSky account.
password string Password for the RedSky account.
redSkyOrgId string The RedSky organization ID for the organization which can be found in the RedSky portal.
View JSON Schema on GitHub

JSON Schema

webex-loginrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoginRequest",
  "title": "LoginRequest",
  "type": "object",
  "required": [
    "email",
    "password"
  ],
  "properties": {
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email for the RedSky account."
    },
    "password": {
      "type": "string",
      "example": "Test@123",
      "description": "Password for the RedSky account."
    },
    "redSkyOrgId": {
      "type": "string",
      "example": "2ff43e05-af11-41ff-91b6-87a3b509f4z4",
      "description": "The RedSky organization ID for the organization which can be found in the RedSky portal."
    }
  }
}