Skip to main content
Skip table of contents

Получение дерева

Получение дерева

Если послать запрос без всех query params, то вернется список root групп. Если у группы поле is_house=true, значит в этой группе нет других групп, и там находятся камеры. Для получения камер Список камер в группе

GET /api/admin/v1/camera-group

Параметры метода

string search, поиск осуществляется по:

  1. Адресу или имени камеры

  2. Логину пользователя, который является владельцем камеры, или id юридического лица

  3. По uuid стрима

  4. По IP камеры В случае успеха будет возвращаться только та часть дерева, в которой найдено совпадение


int group_id, id группы

200 OK

Список групп

JSON
[
    {
        "id": 159,
        "name": "Область обл.",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": 1,
        "intercoms_count": 0
    },
    {
        "id": 149,
        "name": "Область обл.",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": 2464,
        "intercoms_count": 0
    },
    {
        "id": 146,
        "name": "г. Город",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": 2458,
        "intercoms_count": 0
    },
    {
        "id": 139,
        "name": "г. Город",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 23,
        "parent_id": null,
        "csa_id": 17030,
        "intercoms_count": 7
    },
    {
        "id": 228,
        "name": "Область обл.",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": 9397,
        "intercoms_count": 0
    },
    {
        "id": 166,
        "name": "Область обл.",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": 12380,
        "intercoms_count": 0
    },
    {
        "id": 124,
        "name": "Камеры",
        "full_pretty": "Камеры",
        "is_house": 1,
        "cameras_count": 7,
        "parent_id": null,
        "csa_id": null,
        "csa": null,
        "intercoms_count": 0
    },
    {
        "id": 97,
        "name": "Камеры",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 21,
        "parent_id": null,
        "csa_id": null,
        "intercoms_count": 0
    },
    {
        "id": 248,
        "name": "Камеры",
        "full_pretty": "Камеры",
        "is_house": 1,
        "cameras_count": 5,
        "parent_id": null,
        "csa_id": null,
        "csa": null,
        "intercoms_count": 0
    },
    {
        "id": 136,
        "name": "ул. Улица",
        "full_pretty": null,
        "is_house": 0,
        "cameras_count": 0,
        "parent_id": null,
        "csa_id": null,
        "intercoms_count": 0
    }
]

401 Unauthorized

Токен авторизации не передан или не валидный Получение токена

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/camera-group' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "search": "string",
    "group_id": 0
}'
PHP
PHP
$data = array (
  'search' => 'string',
  'group_id' => 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/camera-group', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.