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