Hello,
Trying to the build a FLOW that is using an HTTP GET https://graph.microsoft.com/beta/reports/credentialUserRegistrationDetails
It returns ODATA JSON object. Unable to get this into an array to select each return item for each user to send an email to indicate which is dont have 2FA enable.
Could someone please help build this flow? Please no shortcut answer, too many people are only posting basic stuff
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"userPrincipalName": {
"type": "string"
},
"userDisplayName": {
"type": "string"
},
"isRegistered": {
"type": "boolean"
},
"isEnabled": {
"type": "boolean"
},
"isCapable": {
"type": "boolean"
},
"isMfaRegistered": {
"type": "boolean"
},
"authMethods": {
"type": "array"
}
}
}