Verified Callers

View as MarkdownOpen in Claude

Manage verified caller IDs for your SignalWire project. Before using a phone number as a caller ID for outbound calls, it must be verified. This resource provides full CRUD (with PUT for updates) plus a two-step verification flow.

Access via client.verifiedCallers 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 callers = await client.verifiedCallers.list();
10for (const caller of callers.data ?? []) {
11 console.log(caller.id, caller.phoneNumber);
12}

Methods