This API is used to send a reminder to a customer about their order. It takes in the order ID as a parameter and sends a reminder to the customer who placed the order.
Endpoint #
The Voomerr Order Reminder endpoint is POST https://admin.voomerr.com/api/order-reminder.php
Request Parameters #
Parameter | Required | Description |
---|---|---|
order_id | Yes | The ID of the order for which to send a reminder. |
Response Parameters #
Parameter | Description |
---|---|
status | A boolean value indicating whether the request was successful or not. |
message | A message indicating the status of the request. |
Request Example #
json
{
"order_id": 12345
}
Response Example #
json
{
"status": true,
"message": "Reminder sent successfully."
}