Resource: microsoftAuthenticatorAuthenticationMethod resource type
API Base URI: https://graph.microsoft.com/v1.0/
| Method | URI |
|---|---|
| GET | /me/authentication/microsoftAuthenticatorMethods |
| GET | /users/{id | userPrincipalName}/authentication/microsoftAuthenticatorMethods |
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"@odata.type": "#microsoft.graph.microsoftAuthenticatorAuthenticationMethod",
"id": "6803c096-c096-6803-96c0-036896c00368",
"displayName": "Sandeep's iPhone",
"deviceTag": "",
"phoneAppVersion": "6.5.4",
"createdDateTime": "2020-12-03T23:16:12Z"
}
]
}
Source: MS Graph: Authenticator Methods List Response
| Method | URI |
|---|---|
| GET | /me/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethodId} |
| GET | /users/{id | userPrincipalName}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethodId} |
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"@odata.type": "#microsoft.graph.microsoftAuthenticatorAuthenticationMethod",
"id": "6803c096-c096-6803-96c0-036896c00368",
"displayName": "Sandeep's iPhone",
"deviceTag": "",
"phoneAppVersion": "6.5.4",
"createdDateTime": "2020-12-03T23:16:12Z"
}
}
Source: MS Graph: Authenticator Get Method Response
| Method | URI |
|---|---|
| DELETE | /me/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethodId} |
| DELETE | /users/{id | userPrincipalName}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethodId} |
HTTP/1.1 204 No Content