List of users who can access the camera
200 |
List of users
JSON
|
401 |
Authorization token is not provided or is invalid. Obtaining a token |
cURL
BASH
curl -k --request POST \
--url 'https://your-domain/api/admin/v1/cameras/{camera}/users' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"camera": 0
}'
PHP
PHP
$data = array (
'camera' => 0,
);
$context = stream_context_create([
'ssl'=>['verify_peer' => false],
'http' => [
'method' => 'GET',
'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}/users', false, $context);