REST Client

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.

from signalwire.rest import RestClient
client = RestClient(
project="your-project-id",
token="your-api-token",
host="your-space.signalwire.com",
)
brands = client.registry.brands.list()
for brand in brands.get("data", []):
print(brand["id"], brand.get("name"))

Sub-resources

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