Webex · Schema

BulkSupervisorsDelete

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
supervisorIds array Array of supervisors IDs to be deleted.
deleteAll boolean If present the `supervisorIds` array is ignored, and all supervisors in the context are deleted. **WARNING**: This will remove all supervisors from the organization.
View JSON Schema on GitHub

JSON Schema

webex-bulksupervisorsdelete-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkSupervisorsDelete",
  "title": "BulkSupervisorsDelete",
  "type": "object",
  "required": [
    "supervisorIds"
  ],
  "properties": {
    "supervisorIds": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS80Y2I1M2ZmMy01NWViLTQ2MzYtYTE4ZC05NWVjZmFhM2E4NmY,Y2lzY29zcGFyazovL3VzL1BFT1BMRS8wNzY2ZDNjNC0xZTg1LTQ4YzgtYTFkZi1mMWUzYTAyMDg1MWE"
      },
      "description": "Array of supervisors IDs to be deleted."
    },
    "deleteAll": {
      "type": "boolean",
      "description": "If present the `supervisorIds` array is ignored, and all supervisors in the context are deleted. **WARNING**: This will remove all supervisors from the organization."
    }
  }
}