Windstream Holdings website screenshot

Windstream Holdings

Windstream Holdings is a leading provider of advanced network communications and technology solutions including managed services, cloud computing, and broadband to consumers and businesses across the United States. The company operates the Kinetic broadband brand for consumer and small business customers and Windstream Enterprise (now Uniti Solutions) for business customers, offering SD-WAN, UCaaS, OfficeSuite UC, contact center services, and high-capacity network transport. Windstream delivers voice, data, and managed networking solutions to more than 18 states with over 2.1 million fiber-to-the-premise passings.

2 APIs 0 Features
BroadbandContact CenterManaged ServicesNetwork CommunicationsSD-WANTelecomUCaaSUnified CommunicationsFortune 500

APIs

Windstream Enterprise Voice API

The Windstream Enterprise Voice API (silhouette) is a REST-based web service with WebSocket support for real-time events. It enables developers to make and receive calls, manage...

Windstream Enterprise Contact Center Services API

The Windstream Enterprise Contact Center Services (CCS) API provides programmatic access to contact center operations, enabling developers to route calls, web chats, and text me...

Collections

Pricing Plans

Rate Limits

Windstream Holdings Rate Limits

5 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Windstream Holdings Context

14 classes · 13 properties

JSON-LD

API Governance Rules

Windstream Holdings API Rules

9 rules · 5 errors 2 warnings 2 info

SPECTRAL

Example Payloads

Windstream Make Call Example

6 fields

EXAMPLE

Press

Windstream Enterprise and Talkdesk Partner to Deliver AI- ...

2026-05-25

Windstream Enterprise Launches Talkdesk Express for ...

2026-05-25

F-Secure, Windstream, and Actiontec win broadband marketing ...

2026-05-25

Uniti Group completes the merger with Windstream Holdings II ...

2026-05-25

Windstream Enterprise and Amazon Web Services ...

2026-05-25

Resources

🔗
Website
Website
🌐
Portal
Portal
🔗
DeveloperHub
DeveloperHub
🔗
APIMarketplace
APIMarketplace
🔗
Documentation
Documentation
🔗
SalesforcIntegration
SalesforcIntegration
🔗
LinkedIn
LinkedIn
🔗
JSONLDContext
JSONLDContext
🔗
Vocabulary
Vocabulary

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Windstream Enterprise Voice API
  version: 1.0.0
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: system
    type: folder
  items:
  - info:
      name: Get API Entry Point
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/
    docs: Returns the HAL resource entry point with links to available API resources.
- info:
    name: calls
    type: folder
  items:
  - info:
      name: List Active Calls
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/calls
      params:
      - name: extension
        value: ''
        type: query
        description: Filter calls by extension number
      - name: tenant
        value: ''
        type: query
        description: Filter calls by tenant ID
    docs: Retrieves a list of currently active calls in the system.
  - info:
      name: Get Call Details
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/calls/:callId
      params:
      - name: callId
        value: ''
        type: path
        description: Unique call identifier
    docs: Retrieves details of a specific active call by its ID.
  - info:
      name: Control Call
      type: http
    http:
      method: POST
      url: https://{webadmin}/api/calls/:callId
      params:
      - name: callId
        value: ''
        type: path
        description: Unique call identifier
      body:
        type: json
        data: '{}'
    docs: Executes a control action on an active call. Supported actions include transfer, hold, conference, record, and terminate.
  - info:
      name: Terminate Call
      type: http
    http:
      method: DELETE
      url: https://{webadmin}/api/calls/:callId
      params:
      - name: callId
        value: ''
        type: path
        description: Unique call identifier
    docs: Terminates an active call.
  - info:
      name: Make Outbound Call
      type: http
    http:
      method: POST
      url: https://{webadmin}/api/calls/outbound
      body:
        type: json
        data: '{}'
    docs: Initiates an outbound call from a specified extension to a destination number.
- info:
    name: extensions
    type: folder
  items:
  - info:
      name: List Extensions
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/extensions
      params:
      - name: tenant
        value: ''
        type: query
        description: Tenant ID to filter extensions
      - name: page
        value: ''
        type: query
        description: Page number for pagination
      - name: per_page
        value: ''
        type: query
        description: Number of results per page
    docs: Returns a list of all extensions in the tenant.
  - info:
      name: Get Extension Details
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/extensions/:extensionId
      params:
      - name: extensionId
        value: ''
        type: path
        description: Extension identifier
    docs: Retrieves details of a specific extension.
  - info:
      name: Update Extension
      type: http
    http:
      method: PUT
      url: https://{webadmin}/api/extensions/:extensionId
      params:
      - name: extensionId
        value: ''
        type: path
        description: Extension identifier
      body:
        type: json
        data: '{}'
    docs: Updates the configuration of an existing extension.
- info:
    name: auto-attendants
    type: folder
  items:
  - info:
      name: List Auto-attendants
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/auto-attendants
    docs: Returns a list of all auto-attendants configured in the tenant.
  - info:
      name: Create Auto-attendant
      type: http
    http:
      method: POST
      url: https://{webadmin}/api/auto-attendants
      body:
        type: json
        data: '{}'
    docs: Creates a new auto-attendant with defined menu options and routing rules.
  - info:
      name: Get Auto-attendant
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/auto-attendants/:attendantId
      params:
      - name: attendantId
        value: ''
        type: path
        description: Auto-attendant identifier
    docs: Retrieves configuration details of a specific auto-attendant.
  - info:
      name: Update Auto-attendant
      type: http
    http:
      method: PUT
      url: https://{webadmin}/api/auto-attendants/:attendantId
      params:
      - name: attendantId
        value: ''
        type: path
        description: Auto-attendant identifier
      body:
        type: json
        data: '{}'
    docs: Updates the configuration of an existing auto-attendant.
  - info:
      name: Delete Auto-attendant
      type: http
    http:
      method: DELETE
      url: https://{webadmin}/api/auto-attendants/:attendantId
      params:
      - name: attendantId
        value: ''
        type: path
        description: Auto-attendant identifier
    docs: Removes an auto-attendant configuration.
- info:
    name: users
    type: folder
  items:
  - info:
      name: List Users
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/users
    docs: Returns a list of all users configured in the system.
  - info:
      name: Create User
      type: http
    http:
      method: POST
      url: https://{webadmin}/api/users
      body:
        type: json
        data: '{}'
    docs: Creates a new user account.
  - info:
      name: Get User
      type: http
    http:
      method: GET
      url: https://{webadmin}/api/users/:userId
      params:
      - name: userId
        value: ''
        type: path
        description: User identifier
    docs: Retrieves details of a specific user.
  - info:
      name: Update User
      type: http
    http:
      method: PUT
      url: https://{webadmin}/api/users/:userId
      params:
      - name: userId
        value: ''
        type: path
        description: User identifier
      body:
        type: json
        data: '{}'
    docs: Updates an existing user's configuration.
  - info:
      name: Delete User
      type: http
    http:
      method: DELETE
      url: https://{webadmin}/api/users/:userId
      params:
      - name: userId
        value: ''
        type: path
        description: User identifier
    docs: Removes a user account.
bundled: true