apex-ha icon indicating copy to clipboard operation
apex-ha copied to clipboard

Measurements

Open BR260354 opened this issue 2 years ago • 2 comments

Any way of pulling in the Measurements from Apex?

BR260354 avatar Nov 27 '22 03:11 BR260354

I can't get measurements to show up on my web dashboard - but they don't appear to be in the status or config responses at all. Do you know how to get them to show up in the web dashboard?

brettonw avatar Dec 29 '22 18:12 brettonw

the mlog data is not related to the local device - it's stored in your fusion account (online). Maybe someone could write an integration that pulls it from your fusion account?

The JSON from the site (https://apexfusion.com/api/apex/YOURACCOUNTID/mlog?days=1&_=YOURCOOKIE) is pretty straightforward:

[
  {
    _id: "<your apex id here>",
    date: "2022-12-29T18:25:00.000Z",
    type: 0,
    name: "Blarg",
    value: 0.007,
    text: "",
    __v: 0
  }
]

brettonw avatar Dec 30 '22 06:12 brettonw