Good morning,
I write to ask for help.
When I try to use the rest API to see the details of the devices configured within the application (GET / api / applications / {applicationID} / devices), the server answers me only with the number of configured devices and does not give me more information.
Response body:
{
“totalCount”: “5”,
“result”: []
}
What I expect:
{
“result”: [
{
“applicationID”: “string”,
“description”: “string”,
“devEUI”: “string”,
“deviceProfileID”: “string”,
“deviceProfileName”: “string”,
“deviceStatusBattery”: 0,
“deviceStatusMargin”: 0,
“lastSeenAt”: “string”,
“name”: “string”
}
],
“totalCount”: “string”
}
Have you any ideas?
Thanks
Silvano