Hi! I have a couple of shared devices I would like to access through the cloud api. I can get all of them by the following request:
curl -X POST %shelly_url%/device/all_status -d "show_info=true&auth_key=%shelly_key%"
I get a response where I can see the shared device and get it's ID:
{"isok":true,"data":{"devices_status":{"3494346cfe1c": ... }
Where 3494346cfe1c is the device I would like to access, but when I run:
curl -X POST %shelly_url%/device/status -d "id=3494546bfe1c&auth_key=%shelly_key%"
I get the following response:
{"isok":false,"errors":{"device_not_found":"Your device has not been connected to the cloud!"}}
Do I need to specify a parameter for shared devices to be accessed?