configuration / system

CLI REST-API

timezones

The submenu timezones (timezones) contains the following:

Menus:
dummy (dummy)

Objects: none

Commands:
add-timezone (adds a new timezone)
delete-timezone (delete a timezone)



See also:
/configuration/system/timezones/[ID]
/configuration/system/timezones/add-timezone: adds a new timezone
/configuration/system/timezones/delete-timezone: delete a timezone

REST-API Support:


This menu is supported by the REST API:

Method: GET
URL: /api/configuration/system/timezones


Example using curl:
curl /api/configuration/system/timezones


Method: PATCH
URL: /api/configuration/system/timezones
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X PATCH /api/configuration/system/timezones
-d "{
  \"objects\": \"new-values\"
}"


Method: POST
URL: /api/configuration/system/timezones
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X POST /api/configuration/system/timezones
-d "{
  \"objects\": \"new-values\"
}"