3.5.9 My2N

Getting current settings

Get the current My2N settings.

URL:

https://{{ip_addr}}/api/v1/hipmo/settings/my2n

HTTP method:

GET

Response code:

Standard HTTP response code, treating syntactic errors.

Response data:

{
    "data": {
        "deviceId": "",
        "isEnabled": false,
        "password": ""
    }
}

Section setting

URL:

https://{{ip_addr}}/api/v1/hipmo/settings/my2n

HTTP method:

PUT

Response code:

Standard HTTP response code, treating syntactic errors.

Request body:
{
    "isEnabled": "<boolean>",
    "deviceId": "<string>",
    "password": "<string>"
}

Response data:

{
    "data": {
        "deviceId": "",
        "isEnabled": false,
        "password": ""
    }
}