Skip to main content
Skip table of contents

Обновление группы. VMS Admin API

PUT/api/admin/v1/intercoms/groups/{group}

Headers

Authorization

Bearer token

Accept

application/json

X-Client

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

X-UUID

unique device id

Body

json

JSON
{
    "name": "name",
    "is_house": true
}

groupoptional

int

Уникальный идентификатор группы

namerequired

string

Имя группы

is_houserequired

bool

Является ли домом

Response

200

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

JSON
{
    "id": 1,
    "name": "Камеры",
    "full_pretty": null,
    "is_house": 0,
    "cameras_count": 0,
    "parent_id": null,
    "csa_id": null,
    "intercoms_count": 0
}
401

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

Пример

JSON
curl -k --location --request PUT 'https://vms.local/api/admin/v1/intercoms/groups/{group}' \
--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 '{
    "name": "name",
    "is_house": true
}'
JavaScript errors detected

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

If this problem persists, please contact our support.