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

# List Assigned Phone Numbers

> Get all phone numbers assigned to a specific assistant.

Returns a list of phone numbers currently assigned to the assistant.

This endpoint retrieves a list of all phone numbers currently assigned to a specific assistant. This is useful for seeing which numbers will route incoming calls to this assistant.

### Path Parameters

* `assistant_id` (string, **required**): The unique identifier of the assistant whose phone numbers you want to list.

### Response

The response is a JSON array of phone number objects. Each object contains details about the assigned phone number.

```json Response theme={null}
[
  {
    "id": "pn_1a2b3c4d5e6f7g8h",
    "phone_number": "+15551234567",
    "assistant_id": "asst_a1b2c3d4e5f67890",
    "organization_id": "org_67890",
    "created_at": "2023-10-26T11:00:00Z",
    "updated_at": "2023-10-26T11:00:00Z"
  },
  {
    "id": "pn_9i8j7k6l5m4n3o2p",
    "phone_number": "+15557654321",
    "assistant_id": "asst_a1b2c3d4e5f67890",
    "organization_id": "org_67890",
    "created_at": "2023-10-27T12:30:00Z",
    "updated_at": "2023-10-27T12:30:00Z"
  }
]
```


## OpenAPI

````yaml GET /api/v1/assistants/{assistant_id}/phone-numbers
openapi: 3.1.0
info:
  title: Burki
  description: A system that uses AI to answer customer Calls.
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/assistants/{assistant_id}/phone-numbers:
    get:
      tags:
        - assistants
      summary: Get Assistant Phone Numbers
      description: |-
        Get all phone numbers assigned to a specific assistant.

        Returns a list of phone numbers currently assigned to the assistant.
      operationId: >-
        get_assistant_phone_numbers_api_v1_assistants__assistant_id__phone_numbers_get
      parameters:
        - name: assistant_id
          in: path
          required: true
          schema:
            type: integer
            title: Assistant Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  additionalProperties: true
                  type: object
                title: >-
                  Response Get Assistant Phone Numbers Api V1 Assistants 
                  Assistant Id  Phone Numbers Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````