Delete a promotion code
cURL
curl --request DELETE \ --url https://api.example.com/v1/promotion-codes
{ "data": { "status": 1, "message": "Promotion code deleted in the app successfully" } }
DELETE https://api.partnero.com/v1/promotion-codes
code
coupon
coupon.uuid_code
curl --location --request DELETE 'https://api.partnero.com/v1/promotion-codes' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "code": "PROMO123", "coupon": { "uuid_code": "coupon_123" } }'