v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBRetrieve list of all product campaigns
This endpoint shows all product campaigns with options to filter and sort them. Search by campaign name, team, approval status, and more. Results are shown in pages to make them easier to view and manage.
Query parameters
Use the pagination token to retrieve the next page of results.
Define the number of campaigns you are requesting per page.
Specifies the order in which the response should be sorted:
- SORT_OPTION_ASC: Sorts results in ascending order, such as sorting by "updated time" from oldest to newest.
- SORT_OPTION_DESC: Sorts results in descending order, such as sorting by "updated time" from newest to oldest.
Filter campaigns using the specified campaign name.
Filter campaigns using the specified placement ID.
Filter campaigns using the specified team ID.
Filter campaigns using the specified approval state.
Filter campaigns using the specific campaign active state.
Filter campaigns using one or more catalog IDs. You can specify multiple catalog IDs in the request.
Filter campaigns to include only those managed by retailers, such as fixed tenancy campaigns.
The ID of the team requesting campaigns. Retailers can use their team ID to list campaigns across multiple teams, while advertisers can use their own team ID.
Filter campaigns by a specific wallet ID.
Response
A list of campaigns and a pagination token.
Example response
{
"productCampaigns": [
{
"advertisedProducts": {
"productsByKey": [
{
"catalogId": "catalog_001",
"productCode": "PROD123456",
"sellerId": "seller_78910"
}
]
},
"targeting": {
"searchTerms": [
{
"phrase": "example search term",
"collectionName": "default_collection",
"suggested": true,
"excludedProducts": [
{
"catalogId": "catalog_001",
"productCode": "PROD123456",
"sellerId": "seller_78910"
}
],
"maxBid": "100.00",
"treatAsCustom": true
}
],
"crossSell": {
"targetProductsByKey": [
{
"catalogId": "catalog_001",
"productCode": "PROD123456",
"sellerId": "seller_78910"
}
]
},
"upsell": {
"targetProductsByKey": [
{
"catalogId": "catalog_001",
"productCode": "PROD123456",
"sellerId": "seller_78910"
}
]
},
"excludeFilters": [
{
"catalogId": "catalog_12345",
"filter": "filter_value_abc"
}
],
"includeFilters": [
{
"catalogId": "catalog_12345",
"filter": "filter_value_abc"
}
]
},
"strategy": {
"auction": {
"maxBid": "$100.00",
"spendLimit": {
"daily": "$50.00",
"total": "$1000.00"
}
},
"fixedTenancy": {
"cost": "$99.99",
"positions": [
1,
2,
3
],
"catalogCosts": [
{
"catalogId": "catalog_123456",
"catalogCostPercentage": 0.25
}
]
}
},
"fixedCosts": {
"dataCost": "$100.00",
"creativeCost": "$200.00",
"otherCost": "$50.00"
},
"customFields": [
{
"customFieldId": "cfid_12345",
"content": "This is a custom field content."
}
],
"customQuestions": [
{
"customQuestionId": "cqid_67890",
"answers": [
"Answer 1",
"Answer 2",
"Answer 3"
]
}
]
}
]
}