Webex · Schema

UserPlaceAuthorizationCodeAdd

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code string An Access code.
description string The description of the access code.
View JSON Schema on GitHub

JSON Schema

webex-userplaceauthorizationcodeadd-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserPlaceAuthorizationCodeAdd",
  "title": "UserPlaceAuthorizationCodeAdd",
  "type": "object",
  "required": [
    "code",
    "description"
  ],
  "properties": {
    "code": {
      "type": "string",
      "example": "4856",
      "description": "An Access code."
    },
    "description": {
      "type": "string",
      "example": "Marketing's access code",
      "description": "The description of the access code."
    }
  }
}