{ "fps": 21, "min_obj_size": 12.111111 }
PATCH /api/admin/v1/analytic/ovms/streams/{stream}/settings
string stream, The job_uid identifier
string
mixed fps, |min_obj_size Analytics setting value
mixed
204 No Content
No Content
Successful response - status 204 with empty body
401 Unauthorized
Unauthorized
Authorization token not sent or not valid
curl -k --request POST \ --url 'https://your-domain/api/admin/v1/analytic/ovms/streams/{stream}/settings' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data '{ "stream": "string", "fps": "mixed" }'
$data = array ( 'stream' => 'string', 'fps' => 'mixed', ); $context = stream_context_create([ 'ssl'=>['verify_peer' => false], 'http' => [ 'method' => 'PATCH', 'header' => "Content-Type: application/json\r Accept: application/json", 'content'=>json_encode($data) ] ]); $result = file_get_contents('https://your-domain/api/admin/v1/analytic/ovms/streams/{stream}/settings', false, $context);
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.