Registry

View as MarkdownOpen in Claude

Manage 10DLC (10-digit long code) brand and campaign registration for A2P (Application-to-Person) messaging compliance. The registry namespace is organized into four sub-resources: brands, campaigns, orders, and numbers.

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

Sub-resources

The registry API is under the /api/relay/rest/registry/beta path. The interface may evolve as the 10DLC ecosystem matures.