curl --location --request POST 'https://www.amazon.com/ap/oa/sp/campaigns/delete' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Accept: application/vnd.spCampaign.v3+json' \
--header 'Content-Type: application/vnd.spCampaign.v3+json' \
--data-raw '{
"campaignIdFilter": {
"include": [
"{{campaignId}}"
]
}
}'
{
"campaigns": {
"error": [],
"success": [
{
"campaignId": "95980739749507",
"index": 0
}
]
}
}