Time Zones are used in Devices.
All of the attribute fields are returned from GET (read) operations. Only those attributes not marked as read only may be set via POST (create) or PUT (update) operations.
Name | Type | Notes |
---|---|---|
TimeZoneId | String | Read Only |
UtcOffset | String | Read Only |
DaylightSavingTime | Boolean | Read Only |
Returns an array of Time Zones in order by UtcOffset and then TimeZoneId.
https://cleverfoxbackup.com/api/timezones
{ "data": [ { "TimeZoneId": "Eastern Standard Time", "UtcOffset": "-05:00:00", "DaylightSavingTime": true } ], "page_no": 1, "page_size": 25 }
Returns a single Time Zone.
https://cleverfoxbackup.com/api/timezones/{TimeZoneId}
{ "data": { "TimeZoneId": "Eastern Standard Time", "UtcOffset": "-05:00:00", "DaylightSavingTime": true } }