Webex · Schema

DialPatternPut

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
dialPatterns array Array of dial patterns to add or delete. Dial Pattern that is not present in the request is not modified.
deleteAllDialPatterns boolean Delete all the dial patterns for a dial plan.
View JSON Schema on GitHub

JSON Schema

webex-dialpatternput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DialPatternPut",
  "title": "DialPatternPut",
  "type": "object",
  "properties": {
    "dialPatterns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DialPattern"
      },
      "description": "Array of dial patterns to add or delete. Dial Pattern that is not present in the request is not modified."
    },
    "deleteAllDialPatterns": {
      "type": "boolean",
      "example": true,
      "description": "Delete all the dial patterns for a dial plan."
    }
  }
}