Skip to main content
Skip table of contents

Список событий

Список событий

GET /api/admin/v1/external-events

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

int per_page, количество элементов в одной странице пагинации. По умолчанию 25 штук


int page, номер страницы пагинации


string sort, поле, по которому нужно отсортировать сервера


string dir, в каком направлении нужно отсортировать. desc – от большего к меньшему, asc – от меньшего к большему

200 OK

Успешный ответ

JSON
[
    {
        "id": 61,
        "name": "alarm_security_zone",
        "description": "Тревога охранной зоны",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 72,
        "name": "closing_dry_contact",
        "description": "Замыкание сухого контакта",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 71,
        "name": "start_firefighting",
        "description": "Запуск пожаротушения",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 70,
        "name": "two_fires",
        "description": "Два пожара",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 69,
        "name": "fire_2",
        "description": "Пожар 2",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 68,
        "name": "fire",
        "description": "Пожар",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 67,
        "name": "access_denied_by_identifier",
        "description": "Доступ по карте запрещен",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 66,
        "name": "door_not_closed",
        "description": "Внимание! Дверь не закрыта",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 65,
        "name": "hacked_door",
        "description": "Дверь взломана",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 64,
        "name": "unknown_identifier",
        "description": "Неизвестный идентификатор карты",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 63,
        "name": "attention_security_zone",
        "description": "Внимание! Тревога входной зоны",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 62,
        "name": "fault_security_system",
        "description": "Неисправность системы охраны",
        "color": null,
        "analytic_type": null
    },
    {
        "id": 60,
        "name": "line-intersection",
        "description": "Детекция пересечения линии",
        "color": "#813A79",
        "analytic_type": "line-intersection"
    },
    {
        "id": 59,
        "name": "smoke-fire",
        "description": "Детекция дыма и огня",
        "color": "#FF5A3F",
        "analytic_type": "smoke-fire"
    },
    {
        "id": 58,
        "name": "loud-sound",
        "description": "Детекция громких звуков",
        "color": "#008CFF",
        "analytic_type": "loud-sound"
    },
    {
        "id": 41,
        "name": "person_counting",
        "description": "Подсчет людей в области",
        "color": "#FF7CF2",
        "analytic_type": "person_counting"
    },
    {
        "id": 33,
        "name": "camera-obstacle",
        "description": "Детекция повреждения / перекрытия / вандализма камеры",
        "color": "#2542DF",
        "analytic_type": "camera-obstacle"
    },
    {
        "id": 28,
        "name": "motion-detect",
        "description": "Детекция движения",
        "color": "#5AD057",
        "analytic_type": "motion-detect"
    },
    {
        "id": 18,
        "name": "recognized-face",
        "description": "Лицо идентифицировано",
        "color": "#07D4F0",
        "analytic_type": "face"
    },
    {
        "id": 22,
        "name": "pedestrian_detect",
        "description": "models.events.pedestrian_detect",
        "color": "#ff618c",
        "analytic_type": "queue"
    },
    {
        "id": 21,
        "name": "unrecognized-plate-start",
        "description": "Номер не идентифицирован",
        "color": "#628BFF",
        "analytic_type": "license_plate"
    },
    {
        "id": 20,
        "name": "recognized-plate-start",
        "description": "Номер идентифицирован",
        "color": "#3EDE9B",
        "analytic_type": "license_plate"
    },
    {
        "id": 19,
        "name": "unrecognized-face",
        "description": "Лицо не идентифицировано",
        "color": "#91D4E2",
        "analytic_type": "face"
    },
    {
        "id": 27,
        "name": "visitor_counting",
        "description": "Детекция посетителей",
        "color": "#8B3EBA",
        "analytic_type": "visitor_counting"
    }
]

401 Unauthorized

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

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

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

If this problem persists, please contact our support.