Webex · Schema

GetCallParkExtensionObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
extension string The extension for the call park extension.
routingPrefix string Routing prefix of location.
esn string Routing prefix + extension of a person or workspace.
name string Unique name for the call park extension.
View JSON Schema on GitHub

JSON Schema

webex-getcallparkextensionobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetCallParkExtensionObject",
  "title": "GetCallParkExtensionObject",
  "type": "object",
  "required": [
    "extension",
    "name"
  ],
  "properties": {
    "extension": {
      "type": "string",
      "example": "1415",
      "description": "The extension for the call park extension."
    },
    "routingPrefix": {
      "type": "string",
      "example": "1234",
      "description": "Routing prefix of location."
    },
    "esn": {
      "type": "string",
      "example": "12341415",
      "description": "Routing prefix + extension of a person or workspace."
    },
    "name": {
      "type": "string",
      "example": "14159265",
      "description": "Unique name for the call park extension."
    }
  }
}