Skip to main content
Skip table of contents

Создание домофона

В данный момент можно создавать домофоны только бренда Interconnection

POST/api/admin/v1/intercoms

Headers

Authorization

Bearer token

Accept

application/json

X-Client

ios-cctv|android-cctv|thick-legal|web

X-UUID

unique device id

Body

json

JSON
{
    "vendor": "interconnection",
    "schema": "http",
    "ip": "192.168.18.207",
    "port": 8080,
    "login": "root",
    "password": "123456",
    "title": "interconnection_intercom"
}

vendorrequired

string

Производитель домофона

schemarequired

string

URL схема

iprequired

string

IP-адрес

portrequired

integer

Порт

loginrequired

integer

Логин

passwordrequired

integer

Пароль

titlerequired

string

Название домофона

Response

200

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

JSON
null
401

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

Пример

JSON
curl -k --location --request POST 'https://vms.local/api/admin/v1/intercoms' \
--header 'Authorization:Bearer token' \
--header 'Accept:application/json' \
--header 'X-Client:ios-cctv|android-cctv|thick-legal|web' \
--header 'X-UUID:unique device id' \
--header 'Content-Type: application/json \
--data-raw '{
    "vendor": "interconnection",
    "schema": "http",
    "ip": "192.168.18.207",
    "port": 8080,
    "login": "root",
    "password": "123456",
    "title": "interconnection_intercom"
}'
JavaScript errors detected

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

If this problem persists, please contact our support.