Windstream Holdings users API

User account management

Operations 5

GET /users List Users #
POST /users Create User #
GET /users/{userId} Get User #
PUT /users/{userId} Update User #
DELETE /users/{userId} Delete User #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/windstream-holdings-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

windstream-holdings-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Windstream Enterprise Voice Users API
  description: 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 auto-attendants, control call routing, and configure UC (Unified Communications) settings for OfficeSuite UC deployments. The API accepts and delivers content in JSON format and follows HAL (Hypertext Application Language) specifications for resource linking.
  version: 1.0.0
  contact:
    name: Windstream Enterprise Developer Support
    url: https://api.solutions.uniti.com/
  termsOfService: https://www.windstreamenterprise.com/legal/
servers:
- url: https://{webadmin}/api
  description: Voice API server
  variables:
    webadmin:
      default: webadmin.windstreamenterprise.com
      description: WebAdmin server hostname
security:
- basicAuth: []
tags:
- name: users
  description: User account management
paths:
  /users:
    get:
      operationId: listUsers
      summary: List Users
      description: Returns a list of all users configured in the system.
      tags:
      - users
      responses:
        '200':
          description: List of users
          content:
            application/hal+json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'
    post:
      operationId: createUser
      summary: Create User
      description: Creates a new user account.
      tags:
      - users
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserCreate'
      responses:
        '201':
          description: User created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
  /users/{userId}:
    get:
      operationId: getUser
      summary: Get User
      description: Retrieves details of a specific user.
      tags:
      - users
      parameters:
      - name: userId
        in: path
        required: true
        description: User identifier
        schema:
          type: string
      responses:
        '200':
          description: User details
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/User'
    put:
      operationId: updateUser
      summary: Update User
      description: Updates an existing user's configuration.
      tags:
      - users
      parameters:
      - name: userId
        in: path
        required: true
        description: User identifier
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserCreate'
      responses:
        '200':
          description: User updated
    delete:
      operationId: deleteUser
      summary: Delete User
      description: Removes a user account.
      tags:
      - users
      parameters:
      - name: userId
        in: path
        required: true
        description: User identifier
        schema:
          type: string
      responses:
        '200':
          description: User deleted
components:
  schemas:
    UserCreate:
      type: object
      description: Request body for creating or updating a user
      required:
      - username
      - email
      properties:
        username:
          type: string
          description: Login username
        email:
          type: string
          description: Email address
        extension:
          type: string
          description: Extension to assign
        role:
          type: string
          description: User role
          enum:
          - admin
          - user
          - read_only
    User:
      type: object
      description: A user account
      properties:
        id:
          type: string
          description: User identifier
        username:
          type: string
          description: Login username
        email:
          type: string
          description: Email address
        extension:
          type: string
          description: Assigned extension number
        role:
          type: string
          description: User role
          enum:
          - admin
          - user
          - read_only
        tenant:
          type: string
          description: Tenant ID
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: 'HTTP Basic Authentication using extension@tenantId credentials. Username formats: ext@tenantId, ext@tenantId.ID, ext@tenantDID.DID, ext@tenantURI.URI'