Webex · Schema

PostCallParkExtensionObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name for the call park extension. The maximum length is 30.
extension string Unique extension which will be assigned to call park extension. The minimum length is 2, maximum length is 10.
View JSON Schema on GitHub

JSON Schema

webex-postcallparkextensionobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostCallParkExtensionObject",
  "title": "PostCallParkExtensionObject",
  "type": "object",
  "required": [
    "name",
    "extension"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Illinois, Call Park Extension",
      "description": "Name for the call park extension. The maximum length is 30."
    },
    "extension": {
      "type": "string",
      "example": "407721",
      "description": "Unique extension which will be assigned to call park extension. The minimum length is 2, maximum length is 10."
    }
  }
}