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

πŸ“¦ Sample JSON Response