REST ClientRegistry

Numbers

View as MarkdownOpen in Claude

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 instance.

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.

Path parameters

idstringRequiredformat: "uuid"
Unique ID of the assigned number.

Response

Example

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")