Webex · Schema

UpdateDirectorySyncResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enableDirSync boolean The toggle to enable/disable directory sync.
directorySyncStatus object Directory sync status
View JSON Schema on GitHub

JSON Schema

webex-updatedirectorysyncresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateDirectorySyncResponse",
  "title": "UpdateDirectorySyncResponse",
  "type": "object",
  "properties": {
    "enableDirSync": {
      "type": "boolean",
      "example": true,
      "description": "The toggle to enable/disable directory sync."
    },
    "directorySyncStatus": {
      "type": "object",
      "properties": {
        "syncStatus": {
          "type": "string",
          "example": "NOT_SYNCED",
          "description": "The sync status of the enterprise."
        }
      },
      "description": "Directory sync status"
    }
  }
}