Webex · Schema

TriggerDirectorySyncResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enableDirSync boolean The toggle that enabled the directory sync.
directorySyncStatus object Directory sync status
View JSON Schema on GitHub

JSON Schema

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