import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)brand = client.brands.retrieve( "brand_id",)print(brand.id)
Get detailed information about a specific brand by its ID.
GET
/
v1
/
brands
/
{brand_id}
Python
import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)brand = client.brands.retrieve( "brand_id",)print(brand.id)