Webex · Schema

SiteUrlsRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteUrl string Attendee access on the site.
accountType string Account type. Only `attendee` type is supported. For host account, remove attendee and assign the license on that site. * `attendee` - Attendee role on the siteUrl
operation string Operation type. The default operation is `add` if no operation is specified. * `remove` - Remove the attendee role from the user. * `add` - Add the attendee role to the user.
View JSON Schema on GitHub

JSON Schema

webex-siteurlsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteUrlsRequest",
  "title": "SiteUrlsRequest",
  "type": "object",
  "required": [
    "siteUrl",
    "accountType"
  ],
  "properties": {
    "siteUrl": {
      "type": "string",
      "example": "mysite.webex.com",
      "description": "Attendee access on the site."
    },
    "accountType": {
      "type": "string",
      "enum": [
        "attendee"
      ],
      "description": "Account type. Only `attendee` type is supported. For host account, remove attendee and assign the license on that site.\n * `attendee` - Attendee role on the siteUrl\n"
    },
    "operation": {
      "type": "string",
      "enum": [
        "remove",
        "add"
      ],
      "description": "Operation type. The default operation is `add` if no operation is specified.\n * `remove` - Remove the attendee role from the user.\n * `add` - Add the attendee role to the user.\n"
    }
  }
}