Windstream Holdings · Capability

Windstream Enterprise Voice API — users

Windstream Enterprise Voice API — users. 5 operations. Lead operation: List Users. Self-contained Naftiko capability covering one Windstream Holdings business surface.

Run with Naftiko Windstream Holdingsusers

What You Can Do

GET
Listusers — List Users
/v1/users
POST
Createuser — Create User
/v1/users
GET
Getuser — Get User
/v1/users/{userid}
PUT
Updateuser — Update User
/v1/users/{userid}
DELETE
Deleteuser — Delete User
/v1/users/{userid}

MCP Tools

list-users

List Users

read-only idempotent
create-user

Create User

get-user

Get User

read-only idempotent
update-user

Update User

idempotent
delete-user

Delete User

idempotent

Capability Spec

windstream-voice-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Windstream Enterprise Voice API — users
  description: 'Windstream Enterprise Voice API — users. 5 operations. Lead operation: List Users. Self-contained Naftiko
    capability covering one Windstream Holdings business surface.'
  tags:
  - Windstream Holdings
  - users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WINDSTREAM_HOLDINGS_API_KEY: WINDSTREAM_HOLDINGS_API_KEY
capability:
  consumes:
  - type: http
    namespace: windstream-voice-users
    baseUri: https://{webadmin}/api
    description: Windstream Enterprise Voice API — users business capability. Self-contained, no shared references.
    resources:
    - name: users
      path: /users
      operations:
      - name: listusers
        method: GET
        description: List Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createuser
        method: POST
        description: Create User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: users-userId
      path: /users/{userId}
      operations:
      - name: getuser
        method: GET
        description: Get User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: User identifier
          required: true
      - name: updateuser
        method: PUT
        description: Update User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: User identifier
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteuser
        method: DELETE
        description: Delete User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: User identifier
          required: true
    authentication:
      type: basic
      username: '{{env.WINDSTREAM_HOLDINGS_USER}}'
      password: '{{env.WINDSTREAM_HOLDINGS_PASS}}'
  exposes:
  - type: rest
    namespace: windstream-voice-users-rest
    port: 8080
    description: REST adapter for Windstream Enterprise Voice API — users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/users
      name: users
      description: REST surface for users.
      operations:
      - method: GET
        name: listusers
        description: List Users
        call: windstream-voice-users.listusers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createuser
        description: Create User
        call: windstream-voice-users.createuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{userid}
      name: users-userid
      description: REST surface for users-userId.
      operations:
      - method: GET
        name: getuser
        description: Get User
        call: windstream-voice-users.getuser
        with:
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateuser
        description: Update User
        call: windstream-voice-users.updateuser
        with:
          userId: rest.userId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuser
        description: Delete User
        call: windstream-voice-users.deleteuser
        with:
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: windstream-voice-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Windstream Enterprise Voice API — users. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-users
      description: List Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: windstream-voice-users.listusers
      outputParameters:
      - type: object
        mapping: $.
    - name: create-user
      description: Create User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: windstream-voice-users.createuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-user
      description: Get User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: windstream-voice-users.getuser
      with:
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-user
      description: Update User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: windstream-voice-users.updateuser
      with:
        userId: tools.userId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-user
      description: Delete User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: windstream-voice-users.deleteuser
      with:
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.