Webex · Schema

LivemeetingByCountryRequestBody

If neither siteIds nor siteUrl is provided, all customer meeting sites will be included.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteIds array A list of meeting site Ids.
siteUrl string A site URL.
View JSON Schema on GitHub

JSON Schema

webex-livemeetingbycountryrequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LivemeetingByCountryRequestBody",
  "title": "LivemeetingByCountryRequestBody",
  "type": "object",
  "description": "If neither siteIds nor siteUrl is provided, all customer meeting sites will be included.",
  "properties": {
    "siteIds": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "A list of meeting site Ids.",
      "example": [
        1234567,
        2345678,
        3456789
      ]
    },
    "siteUrl": {
      "type": "string",
      "description": "A site URL.",
      "example": "cisco.webex.com"
    }
  }
}