Webex · Schema

SiteResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteUrl string `siteUrl` assigned to the user.
accountType string Account Type of the site. * `attendee` - Attendee account on the site. * `host` - Host account on the site.
View JSON Schema on GitHub

JSON Schema

webex-siteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteResponse",
  "title": "SiteResponse",
  "type": "object",
  "properties": {
    "siteUrl": {
      "type": "string",
      "example": "mysite.webex.com",
      "description": "`siteUrl` assigned to the user."
    },
    "accountType": {
      "type": "string",
      "enum": [
        "attendee",
        "host"
      ],
      "description": "Account Type of the site.\n * `attendee` - Attendee account on the site.\n * `host` - Host account on the site.\n"
    }
  }
}