Webex · Schema

GenerateOtp

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
oneTimePassword string The One-Time Password generated for the user.
expiresIn number The expiration time for the OTP in seconds (default: 7 days).
View JSON Schema on GitHub

JSON Schema

webex-generateotp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GenerateOtp",
  "title": "GenerateOtp",
  "type": "object",
  "required": [
    "oneTimePassword",
    "expiresIn"
  ],
  "properties": {
    "oneTimePassword": {
      "type": "string",
      "example": "283489",
      "description": "The One-Time Password generated for the user."
    },
    "expiresIn": {
      "type": "number",
      "example": 604800,
      "description": "The expiration time for the OTP in seconds (default: 7 days)."
    }
  }
}