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

# Delete Phone

> Delete an existing phone number



## OpenAPI

````yaml Delete /phone/delete/{id}
openapi: 3.1.0
info:
  title: Sell Agent API
  description: API reference for Phone Module managing voice-based AI agents in Sell Agent
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://server.sellagent.ai/api
security: []
paths:
  /phone/delete/{id}:
    delete:
      summary: Delete Phone By ID
      description: Delete an existing phone number
      parameters:
        - name: x-api-key
          in: header
          required: true
          description: Your API key for authentication
          schema:
            type: string
        - name: Content-Type
          in: header
          required: true
          description: Must be application/json
          schema:
            type: string
            enum:
              - application/json
        - name: x-workspace-id
          in: header
          required: false
          description: Optional workspace ID (defaults to user's current workspace)
          schema:
            type: string
        - name: id
          in: path
          required: true
          description: The ID of the phone to delete
          schema:
            type: string
            example: '+17245868135'
      responses:
        '200':
          description: Phone number successfully deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Phone number deleted successfully
        '401':
          description: Unauthorized – Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                status: error
                message: API key is missing or invalid.
        '404':
          description: Not Found – Phone with specified ID not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                status: error
                message: Phone not found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                status: error
                message: An unexpected server error occurred.
components:
  schemas:
    Error:
      required:
        - status
        - message
      type: object
      properties:
        status:
          type: string
          example: error
        message:
          type: string
          example: An error occurred

````