***

title: Numbers
slug: /reference/python/rest/registry/numbers
description: 10DLC number assignment management.
max-toc-depth: 3
---------------------

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

[restclient]: /docs/server-sdks/reference/python/rest/client

Manage phone number assignments to 10DLC campaigns. Use this sub-resource to
remove a number from its campaign assignment.

Access via `client.registry.numbers` on a [`RestClient`][restclient] instance.

```python
from signalwire.rest import RestClient

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

## **delete**

Remove a phone number from its campaign assignment.

#

<EndpointSchemaSnippet endpoint="DELETE /api/relay/rest/registry/beta/numbers/{id}" />

## **Example**

```python
from signalwire.rest import RestClient

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

client.registry.numbers.delete("number-assignment-id")
```