Generate the url used to display the measurement result. It is then stored in the variable store.
- At least one processed measurement must exist.
- resGroup: group to store the result url in
- resKey: key to store the result url as
- Stores the result url in a result variable.
The result url looks something like this
eyJibWlfYWdlX2dlbmRlcl9jYXRlZ29yeSI6Miwic3RkX25uIjoiNjMgLSA3MyIsImhydl9iaW9fYWdlX2NhdGVnb3J5IjozLCJocnZfYWdlX2NhdGVnb3J5IjozLCJwcm9kdWN0X2oyYmYiOiJDIiwidGltZXN0YW1wIjoxNjE5NDM1NTQ2LCJibWkiOjIxLjMsImhydl9iaW9fYWdlIjoiMjEtMzEiLCJtZWFuX2hyIjo4MS4zLCJhb3hfaW50X3Jlc3VsdCI6NSwieDMiOjQ1LCJ4MiI6NTguMTYsIngiOjUxLjg0LCJzZXJpYWwiOiIxRTEyMzQ1Njc4OTAxMjM0NTY3OCIsImhyX2FnZV9nZW5kZXJfY2F0ZWdvcnkiOjMsIng2IjoxMCwieDQiOjM0LjYyLCJhb3giOjUuNCwiZGVtbyI6dHJ1ZX0
which is a base64 encoded version of this json
{
"bmi_age_gender_category":2,
"std_nn":"63 - 73",
"hrv_bio_age_category":3,
"hrv_age_category":3,
"product_j2bf":"C",
"timestamp":1619435546,
"bmi":21.3,
"hrv_bio_age":"21-31",
"mean_hr":81.3,
"aox_int_result":5,
"x3":45,
"x2":58.16,
"x":51.84,
"serial":"1E123456789012345678",
"hr_age_gender_category":3,
"x6":10,
"x4":34.62,
"aox":5.4
}
The most important values are
- aox: The raw result value
- mean_hr: The average heart rate
- std_nn: The heart rate variability
- bmi: The body mass index
- hrv_bio_age: The estimated age of the user's body, based on their age, gender, bmi, hr, hrv, and aox results
A full example of the url can be found at
https://user.biozoom.net/en/result/measurement?data=eyJibWlfYWdlX2dlbmRlcl9jYXRlZ29yeSI6Miwic3RkX25uIjoiNjMgLSA3MyIsImhydl9iaW9fYWdlX2NhdGVnb3J5IjozLCJocnZfYWdlX2NhdGVnb3J5IjozLCJwcm9kdWN0X2oyYmYiOiJDIiwidGltZXN0YW1wIjoxNjE5NDM1NTQ2LCJibWkiOjIxLjMsImhydl9iaW9fYWdlIjoiMjEtMzEiLCJtZWFuX2hyIjo4MS4zLCJhb3hfaW50X3Jlc3VsdCI6NSwieDMiOjQ1LCJ4MiI6NTguMTYsIngiOjUxLjg0LCJzZXJpYWwiOiIxRTEyMzQ1Njc4OTAxMjM0NTY3OCIsImhyX2FnZV9nZW5kZXJfY2F0ZWdvcnkiOjMsIng2IjoxMCwieDQiOjM0LjYyLCJhb3giOjUuNCwiZGVtbyI6dHJ1ZX0&lang=EN-US
- On success: The result URL has successfully been generated and stored.
- On missing result: No processed result has been stored, so the result URL could not be generated.