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

# Delete Inbound Phone Number

> Remove an inbound number that was uploaded through your own Twilio account. See [Enterprise Twilio Integration](https://docs.luly.ai/enterprise-features/custom-twilio) for more information.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

<ParamField header="encrypted_key" type="string" required={true}>
  The encrypted\_key for the Twilio account that owns the phone number you want to delete.
</ParamField>

### Path Parameters

<ParamField path="phone_number" type="string" required={true}>
  The phone number you want to remove from Luly's system.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Can be `success` or `error`.
</ResponseField>

<ResponseField name="message" type="string">
  A message saying whether the deletion succeeded, or a helpful message describing why it failed.
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "message": "Successfully deleted number from database: +15555555555"
  }
  ```
</ResponseExample>
