Get a list of the devices thar user can retrieve data.
Result is a JSON tree of Devices -> Plant -> Ids
/v1/elements/
Get all elements (meteo, tracker, meter, inverter) of current user
GET /v1/elements/ HTTP/1.1
Host: apiexternal.mvscada.com
MV-API-Key: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Content-Type: application/json
{
"inverters": {
"DonBenito2": [
"inv111",
...
"inv560"
],
"DonBenito": [
"inv001",
...
"inv013"
]
},
"trackers": {
"DonBenito2": [
"mover111",
...
"mover560"
],
"DonBenito": [
"mover001",
...
"mover013"
]
},
"meters": {
"DonBenito2": [
"DonBenito2_01",
...
"DonBenito2_20"
],
"DonBenito": [
"DonBenito_1"
]
},
"meteos": {
"DonBenito2": [
"DonBenito2_son1",
...
"DonBenito2_EPPC31-SON1"
],
"DonBenito": [
"DonBenito_EPPC11-SON1",
"DonBenito_son001"
]
}
}