Skip to main content
Skip table of contents

Restarting an analytics case

Restarting an analytics case

Restarting the analytics case associated with a camera. Can only be performed for analytics cases with the 'STOPPED' status.

POST /api/admin/v1/cameras/{camera}/analytic-cases/{analytic_case_camera}/restart/

Method parameters

int camera, unique camera identifier


int analytic_case_camera, unique identifier of the analytics case

200 OK

Successful response

401 Unauthorized

Authorization token is not provided or is invalid. Obtaining a token

422 Unprocessable Entity

Returns a JSON object with an error. Validation

JSON
{
    "message": "There will be no informative message here",
    "errors": {
        "any_key": [
            "The reason for the error will be described here"
        ]
    }
}
cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/cameras/{camera}/analytic-cases/{analytic_case_camera}/restart/' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "camera": 0,
    "analytic_case_camera": 0
}'
PHP
PHP
$data = array (
  'camera' => 0,
  'analytic_case_camera' => 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/cameras/{camera}/analytic-cases/{analytic_case_camera}/restart/', false, $context);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.