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
- Time
- String
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"
}
}