> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clerk.chat/llms.txt
> Use this file to discover all available pages before exploring further.

# List unassigned phones

> Lists all phone numbers that are not assigned to users



## OpenAPI

````yaml /swagger.yml get /public/admin/unassigned-phones
openapi: 3.0.0
info:
  title: Public API Docs
  description: Clerk Public API
  version: '1.0'
  contact: {}
servers:
  - url: https://web-api.clerk.chat
    description: Production server
  - url: http://localhost:3000
    description: Production server
security: []
tags: []
paths:
  /public/admin/unassigned-phones:
    get:
      tags:
        - Admin
      summary: List unassigned phones
      description: Lists all phone numbers that are not assigned to users
      operationId: PublicAdminController_listUnassignedPhones
      parameters: []
      responses:
        '200':
          description: List of unassigned phone numbers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListUnassignedPhonesResponse'
        '400':
          description: Invalid request body
        '401':
          description: Unauthorized request
        '403':
          description: You do not have permission to access this resource
        '404':
          description: Resource not found
        '422':
          description: Invalid request parameters
        '429':
          description: Too many requests for this resource
        '500':
          description: Internal server error
      security:
        - api_key: []
components:
  schemas:
    ListUnassignedPhonesResponse:
      type: object
      description: Response containing a list of unassigned phone numbers
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: The ID of the phone number
              number:
                type: string
                description: The phone number
              provider:
                $ref: '#/components/schemas/InboxProvider'
                description: The provider of the phone number
            required:
              - id
              - number
              - provider
      required:
        - data
    InboxProvider:
      type: string
      enum:
        - twilio
        - bandwidth
        - msteams
        - other
        - non_voip
        - whatsapp
        - telnyx
        - webex
        - rcs
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey

````