import os
from channel3_sdk import Channel3
client = Channel3(
api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted
)
paginated_list_brands_response = client.brands.list()
print(paginated_list_brands_response.items)
Lists all brands, sorted alphabetically.
Supports infinite scrolling with the paging_token parameter.
GET
/
v0
/
list-brands
Python
Copy
import os
from channel3_sdk import Channel3
client = Channel3(
api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted
)
paginated_list_brands_response = client.brands.list()
print(paginated_list_brands_response.items)