Get All Timezones
Retrieve a complete list of supported timezones for your SenderWiz platform using Admin API access.
๐ Get All Timezones
Fetch and display the full list of timezones available in your SenderWiz installation via Admin API.
๐น HTTP Request
GET ADMIN-API-URL/timezones๐ธ Query Parameters
Parameter
Default
Description
page
1
Current page to retrieve.
per_page
10
Number of records per page.
๐ Authorization Header
X-ADMIN-KEY: your-admin-api-key-here๐ป PHP Example
// GET ALL TIMEZONES
$response = $adminEndpoint->getTimezones($pageNumber = 1, $perPage = 10);
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';๐ฆ Sample JSON Response
Last updated