curl --location --request POST '/abandoned-carts/2/reminder' \
--header 'Accept: application/json' \
--header 'Accept-Language: {{lang}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "email",
"alert_details": {
"subject": "Complete your purchase",
"message": "You left items in your cart. Finish your order now and enjoy a discount!",
"offer_discount": 15
}
}'{
"status": "success",
"message": "Reminder sent successfully",
"data": {
"reminder_sent": true,
"type": "email"
}
}