2.2.3.6 Change of Items in Added 2N IP Intercom List

Modify the list of added 2N IP intercoms. 

Parameters 

isActive – true or false

id – get the 2N IP intercom ID from the list, refer to 2.2.3.5 Getting List of Available 2N IP Intercoms

URL:

https://{{ip_addr}}/api/v1/hipm/devices

HTTP method:

PATCH

Request body:

     {
         "devices": [
            {
                "isActive": true,
                "id": 255
            }
        ]
    }

Response code:

Standard HTTP response code, treating syntactic errors.

Response data:

{
    "data": {
        "devices": [
            {
                "id": 255,
                "isActive": true
            }
        ]
    }
}