***

title: Brands
slug: /reference/python/rest/registry/brands
description: 10DLC brand management.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[restclient]: /docs/server-sdks/reference/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/registry/brands/list

[create]: /docs/server-sdks/reference/python/rest/registry/brands/create

[get]: /docs/server-sdks/reference/python/rest/registry/brands/get

[listcampaigns]: /docs/server-sdks/reference/python/rest/registry/brands/list-campaigns

[createcampaign]: /docs/server-sdks/reference/python/rest/registry/brands/create-campaign

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`][restclient] instance.

```python {9}
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**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/registry/brands/list">
    List registered 10DLC brands.
  </Card>

  <Card title="create" href="/docs/server-sdks/reference/python/rest/registry/brands/create">
    Register a new 10DLC brand.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/registry/brands/get">
    Retrieve a specific brand.
  </Card>

  <Card title="list_campaigns" href="/docs/server-sdks/reference/python/rest/registry/brands/list-campaigns">
    List campaigns under a brand.
  </Card>

  <Card title="create_campaign" href="/docs/server-sdks/reference/python/rest/registry/brands/create-campaign">
    Create a messaging campaign under a brand.
  </Card>
</CardGroup>