Microsoft graph API - MFA status per user

Viewed 28

I'm trying to check the status of MFA by a user in my organization.

From what I have found at Google I saw that I need to request this URL https://graph.microsoft.com/beta/$metadata#reports/credentialUserRegistrationDetails.

In version v1.0 this request returns this error:

{'error': {'code': 'BadRequest', 'message': "Resource not found for the segment 'credentialUserRegistrationDetails'.", 'innerError': {'date': '2022-09-14T06:54:05', 'request-id': '9ee64e6d-6a0a-4c38-a316-451290c5989d', 'client-request-id': '9ee64e6d-6a0a-4c38-a316-451290c5989d'}}}

In version beta it returns an empty list:

{'@odata.context': 'https://graph.microsoft.com/beta/$metadata#reports/credentialUserRegistrationDetails', 'value': []}

The beta version is not supported and seems as not working as well.

There is a way to get the status in v1.0?

1 Answers
Related