Delete a Transactional Email
Remove a specific transactional email from the system using its unique email identifier.
๐๏ธ Delete a Transactional Email
Delete a transactional email with the given unique identifier. This action is permanent and cannot be undone.
๐น HTTP Request
DELETE API-URL/transactional-emails/EMAIL-UNIQUE-ID๐ธ URL Segments
Segment
Required
Description
EMAIL-UNIQUE-ID
Yes
Email unique ID to delete.
๐ Authorization Header
X-API-KEY: your-api-key-here๐ป PHP Example
// delete email
$response = $endpoint->delete('EMAIL-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';