Reference
GET
/timezones

The IANA timezones accepted by a campaign schedule timezone. offset is the zone's current UTC offset and shifts with daylight saving, so treat id as the stable value.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings → API & Webhooks.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/timezones"
{  "data": [    {      "id": "America/New_York",      "offset": "-05:00"    },    {      "id": "Europe/London",      "offset": "+00:00"    }  ]}