Time Zones are used in Devices.


Attributes

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

List (GET)

Returns an array of Time Zones in order by UtcOffset and then TimeZoneId.

URL
https://cleverfoxbackup.com/api/timezones
Optional Parameters
  • PageNo: the page number to return, defaults to 1.
  • PageSize: the maximum number of records per page, defaults to 25.
Response Codes
  • 200 OK
{
  "data": [
    {
      "TimeZoneId": "Eastern Standard Time",
      "UtcOffset": "-05:00:00",
      "DaylightSavingTime": true
    }
  ],
  "page_no": 1,
  "page_size": 25
}

Read (GET)

Returns a single Time Zone.

URL
https://cleverfoxbackup.com/api/timezones/{TimeZoneId}
Required Parameters
  • TimeZoneId
Response Codes
  • 200 OK
  • 404 Not Found
{
  "data": {
    "TimeZoneId": "Eastern Standard Time",
    "UtcOffset": "-05:00:00",
    "DaylightSavingTime": true
  }
}

Create (POST)


Update (PUT)


Delete (DELETE)