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
int user, user identifier
int
204 No Content
No Content
Successful response
{ "token": "bearer_token" }
401 Unauthorized
Unauthorized
Authorization token is not provided or is invalid
404 Not Found
Not Found
If the user is not found or it is not possible to issue a token for the user
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 }'
$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);
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.