{"device_type": "all"}curl --location --request POST '/devices//status' \
--header 'X-API-Key: your-api-key' \
--header 'Content-Type: application/json' \
--data-raw '{"device_type": "all"}'{
"response": {
"devices": [
{
"device": "ring-light",
"value": "on",
"status": "online"
},
{
"device": "temperature",
"value": "24",
"status": "normal"
},
{
"device": "buzzer",
"value": "off",
"status": "offline"
}
]
}
}