You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(sb): Add support for Sponsored Brands theme targeting
This commit introduces the `Themes` class to manage theme-based targeting for Sponsored Brands campaigns.
Theme targeting automatically targets keywords related to a brand or landing pages.
This new functionality includes the ability to:
- Create, retrieve, update, and archive theme targets.
- List themes with filtering options.
- Enable and pause themes using convenience methods.
Amazon Ads API - Sponsored Brands - Theme Targeting
7
+
8
+
Theme targeting automatically targets keywords related to your brand or landing pages.
9
+
"""
10
+
11
+
@sp_endpoint('/sb/themes/list', method='POST')
12
+
deflist_themes(self, **kwargs) ->ApiResponse:
13
+
r"""
14
+
Gets a list of theme targets associated with the client identifier, filtered by specified criteria.
15
+
16
+
Request Body
17
+
| '**nextToken**': *string*, {'description': 'Token for pagination. Operations that return paginated results include a pagination token in this field.'}
18
+
| '**maxResults**': *number*, {'description': 'Maximum number of results to return. Defaults to API maximum.'}
19
+
| '**campaignIdFilter**': *object*, {'description': 'List of campaign identifiers to filter by (max 100).'}
20
+
| '**adGroupIdFilter**': *object*, {'description': 'List of ad group identifiers to filter by (max 100).'}
21
+
| '**themeIdFilter**': *object*, {'description': 'List of theme target identifiers to filter by (max 100).'}
22
+
| '**stateFilter**': *object*, {'description': 'List of theme target states to filter by. Valid values: enabled, paused, archived. Default: enabled, paused.'}
23
+
| '**themeTypeFilter**': *object*, {'description': 'List of theme types to filter by. Valid values: KEYWORDS_RELATED_TO_YOUR_BRAND, KEYWORDS_RELATED_TO_YOUR_LANDING_PAGES.'}
0 commit comments