Get One Transactional Email
Retrieve the full details of a specific transactional email by using its unique identifier.
π© Get One Transactional Email
πΉ HTTP Request
GET API-URL/transactional-emails/EMAIL-UNIQUE-IDπΈ URL Segment
Segment
Required
Description
π 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>';