Skip to main content

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

FieldTypeDescription
successbooleanIndicates whether the request was successful.
messagestringA human-readable message describing the result.
datanullNo additional data is returned for this operation.

Sample Response

{
"success": true,
"message": "The scheduled email has been deleted.",
"data": null
}