Webex · Schema

BatchRefreshPMRIDObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteUrl string Site URL to refresh the personal room IDs.
personalMeetingRoomIds array Information of whose personal room IDs are to be refreshed and how to refresh. The maximum size of `items` is 100.
View JSON Schema on GitHub

JSON Schema

webex-batchrefreshpmridobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchRefreshPMRIDObject",
  "title": "BatchRefreshPMRIDObject",
  "type": "object",
  "required": [
    "siteUrl"
  ],
  "properties": {
    "siteUrl": {
      "type": "string",
      "example": "example.webex.com",
      "description": "Site URL to refresh the personal room IDs."
    },
    "personalMeetingRoomIds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PMRIDObject"
      },
      "description": "Information of whose personal room IDs are to be refreshed and how to refresh. The maximum size of `items` is 100."
    }
  }
}