curl --location --request POST 'https://www.amazon.com/ap/oa/sp/productAds/delete' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Prefer: return=representation' \
--header 'Accept: application/vnd.spProductAd.v3+json' \
--header 'Content-Tpe: application/vnd.spProductAd.v3+json' \
--header 'Content-Type: text/plain' \
--data-raw '{
"adIdFilter": {
"include": [
"{{adId}}"
]
}
}'
{
"productAds": {
"error": [],
"success": [
{
"adId": "87094400667825",
"index": 0
}
]
}
}