Skip to main content
Skip table of contents

Создание конфигураций

Создание конфигураций

POST api/admin/v1/config-templates

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

string name, имя


string description, описание


string type, тип


string vendor, производитель камеры


string model, модель камеры


boolean is_default, конфигурация по умолчанию


json body, конфигурация (обязательный параметр, если тип не равен archive_range). Тут должна быть json строка


int service, сервис (если тип равен archive_range)

200 OK

Возвращает объект конфигурации

JSON
{
    "id": 56,
    "type": "OSD_Time",
    "body": "JSON_CONFIGURATION_CONTENT",
    "name": "1",
    "description": null,
    "service": "Any",
    "vendor": "HIKVISION",
    "model": "DS-2CD1043G0-I",
    "is_default": 1
}

401 Unauthorized

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

cURL
BASH
curl -k --request POST \
	--url 'https://your-domainapi/admin/v1/config-templates' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "name": "string",
    "description": "string",
    "type": "string",
    "vendor": "string",
    "model": "string",
    "is_default": "boolean",
    "body": "json",
    "service": 0
}'
PHP
PHP
$data = array (
  'name' => 'string',
  'description' => 'string',
  'type' => 'string',
  'vendor' => 'string',
  'model' => 'string',
  'is_default' => 'boolean',
  'body' => 'json',
  'service' => 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/config-templates', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.