curl --request POST \
--url https://api.example.com/cabinet/promocode/deactivate-discount \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"deactivated_code": "<string>",
"discount_percent": 0
}Deactivate the currently active discount promo code for the current user.
curl --request POST \
--url https://api.example.com/cabinet/promocode/deactivate-discount \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"deactivated_code": "<string>",
"discount_percent": 0
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.