Addresses

View as MarkdownOpen in Claude

Manage regulatory addresses associated with your SignalWire project. Addresses are required for phone number compliance in certain regions. This resource supports list, create, get, and delete — but not update.

Access via client.addresses on a RestClient instance.

1import { RestClient } from "@signalwire/sdk";
2
3const client = new RestClient({
4 project: "your-project-id",
5 token: "your-api-token",
6 host: "your-space.signalwire.com"
7});
8
9const addresses = await client.addresses.list();
10for (const addr of addresses.data ?? []) {
11 console.log(addr.id, addr.friendlyName);
12}

Methods