SetTimeAndDate

Trigger this action to set the time or the date on the appliance.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "SetTimeAndDate": {
    "Date": "date",
    "Time": "time"
  }
}
Date
String
Specify the date in the format yyyy-mm-dd.
Time
String
Specify the time in the format hh:mm:ss.

Example

To set a time of 9:45 am and a date of the 18th August 2020, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "SetTimeAndDate": {
    "Date": "2020-08-18",
    "Time": "09:45:00"
  }
}