cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2077
Views
3
Helpful
2
Replies

Need MT14 example response

sungod
Level 11
Level 11

I'm developing scripts to retrieve/analyse sensor data, but don't have an MT14 in the lab yet.

Has anyone got a sample response for the sections tvoc, pm25, noise, indoorAirQuality that they could post here.

Thanks

1 Accepted Solution

Accepted Solutions

Ryan_Miles
Meraki Employee All-Star
Meraki Employee All-Star

From one of mine

"serial": "xxxx-xxxx-xxxx",
"network": {
"id": "networkID",
"name": ".core"
},
"readings": [
{
"ts": "2022-07-03T15:41:56Z",
"metric": "pm25",
"pm25": {
"concentration": 3
}
},
{
"ts": "2022-07-03T15:41:55Z",
"metric": "tvoc",
"tvoc": {
"concentration": 4310
}
},
{
"ts": "2022-07-03T15:41:46Z",
"metric": "humidity",
"humidity": {
"relativePercentage": 48
}
},
{
"ts": "2022-07-03T15:41:36Z",
"metric": "temperature",
"temperature": {
"fahrenheit": 76.6,
"celsius": 24.78
}
},
{
"ts": "2022-07-03T15:41:36Z",
"metric": "noise",
"noise": {
"ambient": {
"level": 33
}
}
},
{
"ts": "2022-07-03T15:41:30Z",
"metric": "indoorAirQuality",
"indoorAirQuality": {
"score": 82
}
},
{
"ts": "2022-05-07T22:44:46Z",
"metric": "battery",
"battery": {
"percentage": 100

View solution in original post

2 Replies 2

Ryan_Miles
Meraki Employee All-Star
Meraki Employee All-Star

From one of mine

"serial": "xxxx-xxxx-xxxx",
"network": {
"id": "networkID",
"name": ".core"
},
"readings": [
{
"ts": "2022-07-03T15:41:56Z",
"metric": "pm25",
"pm25": {
"concentration": 3
}
},
{
"ts": "2022-07-03T15:41:55Z",
"metric": "tvoc",
"tvoc": {
"concentration": 4310
}
},
{
"ts": "2022-07-03T15:41:46Z",
"metric": "humidity",
"humidity": {
"relativePercentage": 48
}
},
{
"ts": "2022-07-03T15:41:36Z",
"metric": "temperature",
"temperature": {
"fahrenheit": 76.6,
"celsius": 24.78
}
},
{
"ts": "2022-07-03T15:41:36Z",
"metric": "noise",
"noise": {
"ambient": {
"level": 33
}
}
},
{
"ts": "2022-07-03T15:41:30Z",
"metric": "indoorAirQuality",
"indoorAirQuality": {
"score": 82
}
},
{
"ts": "2022-05-07T22:44:46Z",
"metric": "battery",
"battery": {
"percentage": 100

sungod
Level 11
Level 11

Perfect! Thanks