Brands

class ad_api.api.sb.Brands(account='default', marketplace: Marketplaces = Marketplaces.EU, credentials=None, proxies=None, verify=True, timeout=None, debug=False, access_token=None)

Use the Amazon Advertising API for Sponsored Brands for campaign, ad group, keyword, negative keyword, drafts, Stores, landing pages, and Brands management operations. For more information about Sponsored Brands, see the Sponsored Brands Support Center. For onboarding information, see the account setup topic.

list_brands(self, **kwargs) ApiResponse:

Gets an array of Brand data objects for the Brand associated with the profile ID passed in the header. For more information about Brands, see [Brand Services](https://brandservices.amazon.com/).

Keyword Args
None
Returns:

ApiResponse payload:

brandId’: string, {‘description’: ‘The Brand identifier.’}
brandEntityId’: string, {‘description’: ‘The Brand entity identifier.’}
brandRegistryName’: string, {‘description’: ‘The Brand name.’}

### Example python

from ad_api.api.sb.brands import Brands

result = Brands().list_brands()

logging.info(result)

### Payload

[{'brandEntityId': 'ENTITY5ON7M22396H',
  'brandId': 'A387T2Q1UNXHJK',
  'brandRegistryName': 'Apple'},
 {'brandEntityId': 'ENTITY218756GCCQ6CF',
  'brandId': 'A36UAF6UNGFFAR',
  'brandRegistryName': 'Huawei'},
 {'brandEntityId': 'ENTITY1PRG7GD8FVXA3',
  'brandId': 'A87RK5OLHEBUU5',
  'brandRegistryName': 'Xiaomi'}]

NOT AVAILABLE SANDBOX [NOT_FOUND - Could not find resource for full path]