Get One Template
Retrieve the full details of a specific email template using its unique template ID.
🧾 Get One Template
🔹 HTTP Request
GET API-URL/templates/TEMPLATE-UNIQUE-ID🔸 URL Segments
Segment
Required
Description
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// GET ONE ITEM
$response = $endpoint->getTemplate('TEMPLATE-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';📦 Sample JSON Response
Last updated