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.

import { RestClient } from "@signalwire/sdk";
const client = new RestClient({
project: "your-project-id",
token: "your-api-token",
host: "your-space.signalwire.com"
});
const addresses = await client.addresses.list();
for (const addr of addresses.data ?? []) {
console.log(addr.id, addr.friendlyName);
}

Methods