Webex · Schema

DialPlanPut

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string A unique name for the dial plan.
routeId string ID of route type associated with the dial plan.
routeType object Route Type associated with the dial plan.
View JSON Schema on GitHub

JSON Schema

webex-dialplanput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DialPlanPut",
  "title": "DialPlanPut",
  "type": "object",
  "required": [
    "name",
    "routeId",
    "routeType"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "dialPlanName",
      "description": "A unique name for the dial plan."
    },
    "routeId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1JPVVRFX0dST1VQLzA1OWEyNzNlLWJiYjAtMTFlYy04NDIyLTAyNDJhYzEyMDAwMg",
      "description": "ID of route type associated with the dial plan."
    },
    "routeType": {
      "$ref": "#/components/schemas/RouteType",
      "description": "Route Type associated with the dial plan."
    }
  }
}