Get All Transactional Emails

Retrieve a paginated list of all transactional emails sent via the platform.

📬 Get All Transactional Emails

Use this endpoint to fetch all transactional email records with pagination support.


🔹 HTTP Request

GET API-URL/transactional-emails

🧾 Query Parameters

Parameter
Default
Description

page

1

Current page to retrieve.

per_page

10

Items per page to retrieve.


🔐 Authorization Header

X-API-KEY: your-api-key-here

💻 PHP Example

// GET ALL ITEMS
$response = $endpoint->getEmails($pageNumber = 1, $perPage = 10);

// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';

📦 Sample JSON Response