{
"campaigns": [{
"budgetSettings": {
"budget": {
"recurrenceType": "DAILY",
"budgetValue": {
"amount": 10.00
}
}
},
"startDate": "2024-09-25T00:00:00Z",
"endDate": "2024-09-25T00:00:00Z",
"name": "campaign name",
"state": "ENABLED",
"tags": {
"tag1": "value1",
"tag2": "value2",
"tag3": "value3"
}
}]
}
curl --location --request POST 'https://www.amazon.com/ap/oa/st/campaigns' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"campaigns": [{
"budgetSettings": {
"budget": {
"recurrenceType": "DAILY",
"budgetValue": {
"amount": 10.00
}
}
},
"startDate": "2024-09-25T00:00:00Z",
"endDate": "2024-09-25T00:00:00Z",
"name": "campaign name",
"state": "ENABLED",
"tags": {
"tag1": "value1",
"tag2": "value2",
"tag3": "value3"
}
}]
}'
{}