Restart stream. Sends a request to the media server instructing it to reload the stream.
POST /api/admin/v1/camera/{camera}/stream/{stream}/restart
int camera, unique identifier of the camera
int
int stream, unique identifier of the stream
200 OK
OK
Successful response
{ "status": "ok" }
401 Unauthorized
Unauthorized
Authorization token is not provided or is invalid. Obtaining a token
402 Payment Required
Payment Required
License error
422 Unprocessable Entity
Unprocessable Entity
Returns a JSON object with an error. Validation
{ "message": "There will be no informative message here", "errors": { "any_key": [ "The reason for the error will be described here" ] } }
curl -k --request POST \ --url 'https://your-domain/api/admin/v1/camera/{camera}/stream/{stream}/restart' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data '{ "camera": 0, "stream": 0 }'
$data = array ( 'camera' => 0, 'stream' => 0, ); $context = stream_context_create([ 'ssl'=>['verify_peer' => false], 'http' => [ 'method' => 'POST', 'header' => "Content-Type: application/json\r Accept: application/json", 'content'=>json_encode($data) ] ]); $result = file_get_contents('https://your-domain/api/admin/v1/camera/{camera}/stream/{stream}/restart', false, $context);
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.