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

# Delete Inbound

> Removes a single inbound assistant based on the ID supplied. Only the inbound binding is removed — the linked assistant and the dialer (with its phone number) are not deleted.

Removes a single inbound dialer based on the supplied `id`.

Only the inbound binding is removed — the linked assistant and the dialer (with its phone number) are not deleted. After removal, incoming calls to that number will no longer be answered by the assistant.


## OpenAPI

````yaml DELETE /inbound/delete?id={id}
openapi: 3.0.1
info:
  title: QCall Ai API
  description: >-
    A sample API that uses a campaign store as an example to demonstrate
    features in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.qcall.ai/api/v1
security:
  - apiKeyAuth: []
paths:
  /inbound/delete?id={id}:
    delete:
      summary: Delete an inbound assistant
      description: >-
        Removes a single inbound assistant based on the ID supplied. Only the
        inbound binding is removed — the linked assistant and the dialer (with
        its phone number) are not deleted.
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
          description: ID of the inbound assistant to remove
      responses:
        '204':
          description: Inbound assistant removed
          content: {}
        '400':
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      name: x-api-key
      in: header

````