earth-americasGet 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