Delete Scheduled Email
This endpoint allows you to delete a scheduled email using its unique reference ID. This action is irreversible, so ensure that you want to delete the scheduled email before proceeding.
Endpoint
DELETE https://smtp.maileroo.com/api/v2/scheduled/[:reference_id]
Sample Request
The following is a sample request to send an email.
DELETE https://smtp.maileroo.com/api/v2/scheduled/abc1234567890abcdef1234
Response Structure
Field | Type | Description |
---|---|---|
success | boolean | Indicates whether the request was successful. |
message | string | A human-readable message describing the result. |
data | null | No additional data is returned for this operation. |
Sample Response
{
"success": true,
"message": "The scheduled email has been deleted.",
"data": null
}