Get One Transactional Email
Retrieve the full details of a specific transactional email by using its unique identifier.
π© Get One Transactional Email
Use this endpoint to fetch the data of a specific transactional email, including metadata, content, and attachments.
πΉ HTTP Request
GET API-URL/transactional-emails/EMAIL-UNIQUE-IDπΈ URL Segment
Segment
Required
Description
EMAIL-UNIQUE-ID
Yes
Unique ID of the transactional email.
π Authorization Header
X-API-KEY: your-api-key-hereπ» PHP Example
// GET ONE ITEM
$response = $endpoint->getEmail('EMAIL-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';