REST ClientRegistry

Brands

View as MarkdownOpen in Claude

Register and manage 10DLC brands. Brands represent the business entity behind messaging campaigns. Each brand can have one or more campaigns associated with it.

Access via client.registry.brands 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"))

Methods