When using the Maker API to get information from devices, if I pull all the devices with full details, there is some data there for a sensor that is NOT if I pull a sensor directly by ID. Mainly the "date" which we would like to check certain sensors for the last date this device was active. (helpful for sensor that have connectivity issues). Can this be added when you pull the device ID directly?
For example, if I pull it with full details:
/apps/api/9/devices/all?access_token=
...
{
"name": "ES13",
"label": "ES13",
"type": "Zooz ZSE44 Temperature Humidity XS Sensor",
"id": "32",
"date": "2025-05-06T14:01:48+0000",
"model": null,
"manufacturer": null,
"room": "Server",
"capabilities": [
"RelativeHumidityMeasurement",
"Battery",
"TemperatureMeasurement",
"Sensor"
],
"attributes": {
"battery": "100",
"dataType": "NUMBER",
"values": null,
"humidity": "55",
"temperature": "76.7"
},
"commands":
},
But if I pull it by ID specifically, notice the "date" is not there...
/apps/api/9/devices/32?access_token=
{
"id": "32",
"name": "ES13",
"label": "ES13 - Z2.R09",
"type": "Zooz ZSE44 Temperature Humidity XS Sensor",
"room": "Server",
"attributes": [
{
"name": "battery",
"currentValue": 100,
"dataType": "NUMBER"
},
{
"name": "humidity",
"currentValue": 55,
"dataType": "NUMBER"
},
{
"name": "temperature",
"currentValue": 76.7,
"dataType": "NUMBER"
}
],
"capabilities": [
"RelativeHumidityMeasurement",
{
"attributes": [
{
"name": "humidity",
"dataType": null
}
]
},
"Battery",
{
"attributes": [
{
"name": "battery",
"dataType": null
}
]
},
"TemperatureMeasurement",
{
"attributes": [
{
"name": "temperature",
"dataType": null
}
]
},
"Sensor"
],
"commands":