get_tzlist
Retrieve the complete list of timezones supported by a Busy Bar device, including offsets and abbreviations, to select or verify a timezone before setting it.
Instructions
Retrieve the full list of supported timezones from the Busy Bar device.
This tool queries /api/time/tzlist on the device and returns every timezone
that can be used with the set_timezone functionality (/api/time/timezone POST).
Returns a TimezoneListResponse object containing:
- list: list[TimezoneInfo] — an array of available timezones, each with:
- name: str — human-readable timezone name (e.g., 'America/New_York')
- offset: str — UTC offset string (e.g., '-05:00', '+05:30')
- abbr: str — timezone abbreviation (e.g., 'EST', 'IST')
Use case:
Browsing the available timezones before choosing one to apply via set_timezone.
Useful for building a UI dropdown or confirming that a specific named timezone is supported.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||