curl --location 'https://api.zid.sa/v1/managers/store/abandoned-carts/notifications/send-manually' \
--header 'Authorization: {{Autherization}}' \
--header 'Store-ID: {{StoreId}}' \
--header 'Content-Type: application/json' \
--data '{
"abandoned_carts": [
12345,
12346
],
"notification_settings": {
"type": "abandoned_cart_notifications",
"id": "123",
"title": "Abandoned cart reminder",
"settings": {
"support_multilanguage": true,
"email": {
"is_active": true,
"content": [
{
"lang": "en",
"subject": "You left items in your cart",
"message": "Complete your purchase before your cart expires."
}
]
},
"extra_data": {
"type": "manually",
"save_as_draft": false
}
}
}
}'