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.

import { RestClient } from "@signalwire/sdk";
const client = new RestClient();

delete

Remove a phone number from its campaign assignment.

Path parameters

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

Response

Example

import { RestClient } from "@signalwire/sdk";
const client = new RestClient({
project: "your-project-id",
token: "your-api-token",
host: "your-space.signalwire.com"
});
await client.registry.numbers.delete("number-assignment-id");