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.

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

Sub-resources

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