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>';

๐Ÿ“ฆ Sample JSON Response