Where can I see my weight in the GUI after changing it through the API?
Using the API I add my weight to wellness data like this:
URL = “https://intervals.icu/api/v1/athlete/{i99999}/wellness/{data[“id”]}’”
Where data[“id”] contains the date as you see in the json string, which I also parse as data:
{“weight”: 89.569, “id”: “2023-05-16”}
By doing this I get a 200 response. But where in the web interface of my profile can I find the new weight I added?
The weight shown on the home page in below screenshot, is not the weight I entered through the API. i would have expected it to show the API weight on May 16th in the calendar.
Should I do it differently?