***

title: delete
slug: /reference/python/rest/phone-numbers/delete
description: Release a phone number from the project.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Release (delete) a phone number from the project.

<EndpointSchemaSnippet endpoint="DELETE /api/relay/rest/phone_numbers/{id}" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

client.phone_numbers.delete("phone-number-id")
```