Get All Templates
Retrieve a paginated list of email templates available for the authenticated customer account.
🖼️ Get All Templates
🔹 HTTP Request
GET API-URL/templates🧾 Query Parameters
Parameter
Default
Description
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// GET ALL ITEMS
$response = $endpoint->getTemplates($pageNumber = 1, $perPage = 10);
// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';📦 Sample JSON Response
Last updated