curl --location --request POST 'https://www.amazon.com/ap/oa/sb/v4/ads/delete' \
--header 'Amazon-Advertising-API-ClientId: {{client_id}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Amazon-Advertising-API-Scope: {{profileId}}' \
--header 'Accept: application/vnd.sbadresource.v4+json' \
--header 'Content-Type: text/plain' \
--data-raw '{
"adIdFilter": {
"include": [
"{{adId}}"
]
}
}'
{}