Whenever I send an API call to get the Current Status of the Service Health of Office 365, the last update is always exactly 24 hours behind.
I saw this referenced here but the answer to the question was nonsense, so I will try it here.
Example code in PowerShell
Invoke-RestMethod "https://manage.office.com/api/v1.0/$tenantid/ServiceComms/CurrentStatus" -Headers $officeapiheader
If the current time is 2019-10-17T05:18:25.469735Z
The StatusTime field returned is 2019-10-16T05:18:25.469735Z
which is full 24 hours behind.
- By any chance am I making a mistake in my calls?
- Is it as I assume, that, it is actually the current status and only the datetime is wrong?
- What can I do to address this?