Skip to main content
Skip table of contents

Проблемные

Проблемные

Список проблемных камер. Проблемными считаются камеры, у которых статус не «активная» или «инициализация»

GET /api/admin/v1/cameras/inactive

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

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


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


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


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


string search, поиск по названию камеры или её IP-адресу


bool is_reserved, отобразить камеры только с зарезервированными или незарезервированными IP-адресами


string source, тип заведения камеры: auto – автоматически через биллинг, manual – администратором через панель администратора


string streams_source, тип заведения потоков камеры: auto – автоматически через биллинг, manual – администратором через панель администратора

200 OK

Возвращает список камер на i странице пагинации

JSON
{
    "data": [
        {
            "id": 6656,
            "group_id": 450,
            "status": "inactive",
            "type": "flussonic",
            "pretty_text": "Новая обл., Новый р-н, г. Город, ул. Улица 1",
            "short_pretty": "г. Город, ул. Улица 1",
            "start_at": "2022-10-26 09:58:31",
            "created_at": "2019-06-26 11:36:06",
            "name": "Подъезд 1",
            "streams": [
                {
                    "id": 13314,
                    "type": "low",
                    "camera_id": 6656,
                    "status": "inactive",
                    "url": "rtsp://admin:ASDasd-123@10.6.137.2:554/Streaming/Channels/102",
                    "bitrate": 608,
                    "resolution": "854x480",
                    "output_rate": 0,
                    "ip": "10.6.137.2",
                    "uuid": "326d29e8-0261-48da-9717-4bcd6aa079db",
                    "sound": "tracks-v1",
                    "streams_count": 0,
                    "server": {
                        "id": 33,
                        "type": "flussonic",
                        "schema": "https",
                        "internal_domain": "host-name-1.vms.local",
                        "external_domain": "host-name-1.vms.local",
                        "domain": "host-name-1.vms.local",
                        "internal": "62122",
                        "external": "62121",
                        "rtsp": "554",
                        "traffic_in": 300240,
                        "traffic_out": 4331,
                        "status": true,
                        "is_enabled": false,
                        "has_cache": true,
                        "proxy": "host-name-1.vms.local",
                        "created_at": "2019-09-10 17:56:55",
                        "updated_at": "2022-11-01 15:53:48",
                        "group_type": "all",
                        "can_delete": false,
                        "streams_limit": 650,
                        "bitrate_limit": 700000,
                        "extra": [],
                        "is_editable": true
                    },
                    "sub_servers": [],
                    "transfer_servers": [],
                    "transfer_sub_servers": [],
                    "created_at": "2019-10-22 04:36:25",
                    "updated_at": "2022-11-01 13:34:00",
                    "is_preview_from_server": true,
                    "is_archive_from_server": null,
                    "is_enabled": true,
                    "is_can_transfer": true,
                    "source": "manual",
                    "is_sound_enabled": null,
                    "reconnect_attempt": null,
                    "reconnect_total": null,
                    "reconnect_time": "",
                    "disconnections_count": 0,
                    "is_actual": true
                }
            ],
            "attached_services": [],
            "services": {
                "ptz": false,
                "motion_detect": false
            },
            "can_edit": true,
            "origin": "external",
            "group_type": "public",
            "shared_from": null,
            "ip": "10.6.137.2",
            "lat": null,
            "lng": null,
            "azimuth": null,
            "is_sensitive": 0,
            "is_public": 0,
            "is_ip_reserved": false,
            "count_issues": 0,
            "source": "manual",
            "archive_storage_days": 30,
            "is_archive_recording": true,
            "archive_recording_type": "fulltime",
            "is_increased_reconnect": 0,
            "is_sound_enabled": true,
            "is_bridge": false,
            "can_change_archive_timetable": true,
            "is_auto_create_streams": false,
            "is_provisioning_enable": false,
            "is_can_manage_streams": true,
            "streams_source": "manual",
            "is_can_manage_archive_storage_days": true,
            "is_editable": true,
            "status_changed_at": "2022-10-26 09:58:31"
        }
    ],
    "links": {
        "first": "http://127.0.0.1:8080/api/admin/v1/cameras/inactive?page=1",
        "last": "http://127.0.0.1:8080/api/admin/v1/cameras/inactive?page=4756",
        "prev": null,
        "next": "http://127.0.0.1:8080/api/admin/v1/cameras/inactive?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 4756,
        "links": [
            {
                "url": null,
                "label": "pagination.previous",
                "active": false
            }
        ],
        "path": "http://127.0.0.1:8080/api/admin/v1/cameras/inactive",
        "per_page": 1,
        "to": 1,
        "total": 4756
    }
}

401 Unauthorized

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

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

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

If this problem persists, please contact our support.