configuration / syncteam

CLI REST-API

set-time

set-time [YYYY-MM-DDTHH:MM:SS]
The "set-time" command sets the time.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "time": "2000-01-01T12:00:00"
    }
}
NameValueDescriptionExample
YYYY-MM-DDTHH:MM:SS2000-01-01T12:00:00
See also:
/configuration/syncteam: syncteam configuration

REST-API Support:


This command is supported by the REST API:

Method: PUT
URL: /api/configuration/syncteam/set-time
Body:
{
    "parameters": {
        "time": [YYYY-MM-DDTHH:MM:SS]
    }
}

Example using curl:
curl -X PUT /api/configuration/syncteam/set-time -d 
"{
    \"parameters\": {
        \"time\": \"2000-01-01T12:00:00\"
    }
}"