Extension

A user extension in the Windstream phone system

BroadbandContact CenterManaged ServicesNetwork CommunicationsSD-WANTelecomUCaaSUnified CommunicationsFortune 500

Properties

Name Type Description
id string Extension identifier
number string Extension number
name string Display name for the extension
tenant string Tenant ID this extension belongs to
type string Extension type
status string Extension status
View JSON Schema on GitHub

JSON Schema

windstream-extension-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/windstream-holdings/refs/heads/main/json-schema/windstream-extension-schema.json",
  "title": "Extension",
  "description": "A user extension in the Windstream phone system",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Extension identifier"
    },
    "number": {
      "type": "string",
      "description": "Extension number"
    },
    "name": {
      "type": "string",
      "description": "Display name for the extension"
    },
    "tenant": {
      "type": "string",
      "description": "Tenant ID this extension belongs to"
    },
    "type": {
      "type": "string",
      "description": "Extension type",
      "enum": ["user", "auto_attendant", "hunt_group", "voicemail", "conference"]
    },
    "status": {
      "type": "string",
      "description": "Extension status",
      "enum": ["active", "inactive", "suspended"]
    }
  },
  "required": ["id", "number"]
}