Microsoft Health API: Get Account Creation Date

I am trying to download data from the Cloud API, but I do not know where to start my queries. There is a “createdDate” key in the device API, but it has never been populated.

Is there any way to find this information from the API without asking the user?

+4
source share
1 answer

I see that "createdTime" displays correctly in my profile when I request a profile API.

Inquiry:

GET https://api.microsofthealth.net/v1/me/Profile

Answer:

{
    "firstName":"John",
    "lastName":"",
    "birthdate":"",
    "postalCode":"",
    "gender":"Male",
    "height":19055,
    "weight":549575,
    "preferredLocale":"en-US",
    "lastUpdateTime":"2016-06-04T00:07:58.950+00:00",
    "createdTime":"2015-10-09T18:26:53.498+00:00"
}
+1
source

Source: https://habr.com/ru/post/1629512/


All Articles