{
"campaigns": [
{
"budgetType": "DAILY",
"name": "Name of campaign",
"state": "ENABLED",
"productLocation": "SOLD_ON_AMAZON",
"startDate": "2023-05-21",
"budget": 10,
"bidding": {
"bidOptimization": "false",
"bidAdjustmentsByShopperSegment": [
{
"percentage": 200,
"shopperSegment": "NEW_TO_BRAND_PURCHASE"
}
],
"bidAdjustmentsByPlacement": [
{
"percentage": 20,
"placement": "HOME"
},
{
"percentage": 15,
"placement": "DETAIL_PAGE"
},
{
"percentage": 15,
"placement": "OTHER"
}
],
"bidOptimizationStrategy":"MAXIMIZE_NEW_TO_BRAND_CUSTOMERS"
}
}
]
}
curl --location --request POST 'https://www.amazon.com/ap/oa/sb/v4/campaigns' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Accept: application/vnd.sbcampaignresource.v4+json' \
--header 'Content-Type: application/json' \
--data-raw '{
"campaigns": [
{
"budgetType": "DAILY",
"name": "Name of campaign",
"state": "ENABLED",
"productLocation": "SOLD_ON_AMAZON",
"startDate": "2023-05-21",
"budget": 10,
"bidding": {
"bidOptimization": "false",
"bidAdjustmentsByShopperSegment": [
{
"percentage": 200,
"shopperSegment": "NEW_TO_BRAND_PURCHASE"
}
],
"bidAdjustmentsByPlacement": [
{
"percentage": 20,
"placement": "HOME"
},
{
"percentage": 15,
"placement": "DETAIL_PAGE"
},
{
"percentage": 15,
"placement": "OTHER"
}
],
"bidOptimizationStrategy":"MAXIMIZE_NEW_TO_BRAND_CUSTOMERS"
}
}
]
}'
{
"campaigns": {
"error": [],
"success": [
{
"campaign": {
"bidding": {
"bidOptimization": true,
"bidOptimizationStrategy": "MAXIMIZE_IMMEDIATE_SALES"
},
"budget": 10,
"budgetType": "DAILY",
"campaignId": "33598597792560",
"isMultiAdGroupsEnabled": true,
"name": "Test v4 campaign 3",
"productLocation": "SOLD_ON_AMAZON",
"startDate": "2022-10-20",
"state": "PAUSED"
},
"campaignId": "33598597792560",
"index": 0
}
]
}
}