Skip to main content
Skip table of contents

Synchronize cameras

Synchronize cameras

Camera synchronization can only be performed for users created through the billing system.

The action is asynchronous, so receiving a response does not indicate the completion of synchronization.

permission - sync-cameras

POST api/admin/v1/user-actions/{user}/sync-cameras

Method parameters

int user, user identifier

204 No Content

Successful response

JSON
{
    "token": "bearer_token"
}

401 Unauthorized

Authorization token is not provided or is invalid

404 Not Found

If the user is not found or it is not possible to issue a token for the user

cURL
BASH
curl -k --request POST \
	--url 'https://your-domainapi/admin/v1/user-actions/{user}/sync-cameras' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "user": 0
}'
PHP
PHP
$data = array (
  'user' => 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-domainapi/admin/v1/user-actions/{user}/sync-cameras', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.