authenticationMethodModes を一覧表示する
名前空間: microsoft.graph
authenticationMethodModes オブジェクトとそのプロパティの一覧として、サポートされているすべての認証方法、またはサポートされているすべての認証方法の組み合わせの一覧を取得します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
アクセス許可の種類 | 最小特権アクセス許可 | より高い特権のアクセス許可 |
---|---|---|
委任 (職場または学校のアカウント) | Policy.Read.All | Policy.ReadWrite.AuthenticationMethod、Policy.ReadWrite.ConditionalAccess |
委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
アプリケーション | Policy.Read.All | Policy.ReadWrite.AuthenticationMethod、Policy.ReadWrite.ConditionalAccess |
職場または学校アカウントを使用した委任されたシナリオでは、サインインしているユーザーに、サポートされている Microsoft Entra ロール またはサポートされているロールのアクセス許可を持つカスタム ロールを割り当てる必要があります。 この操作では、次の最小特権ロールがサポートされています。
- 条件付きアクセス管理者
- セキュリティ管理者
- セキュリティ閲覧者
HTTP 要求
authenticationMethodModes オブジェクトとその説明のコレクションを取得します。
GET /identity/conditionalAccess/authenticationStrength/authenticationMethodModes
authenticationStrengthPolicy オブジェクトで許可されているすべての組み合わせ (allowedCombinations) を表す authenticationCombinations オブジェクトのフラット コレクションを取得します。
GET /identity/conditionalAccess/authenticationStrength/combinations
オプションのクエリ パラメーター
このメソッドでは、OData クエリ パラメーターはサポートされていません。
要求ヘッダー
名前 | 説明 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは 200 OK
応答コードと、応答本文の authenticationMethodModeDetail オブジェクトのコレクションを返します。
例
例 1: authenticationMethodModes オブジェクトとその説明を取得する
要求
次の例は、 authenticationMethodModes オブジェクトのコレクションとその説明を取得する要求を示しています。
GET https://graph.microsoft.com/v1.0/identity/conditionalAccess/authenticationStrength/authenticationMethodModes
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#authenticationMethodModeDetail",
"value": [
{
"id" : "password",
"displayName" : "Password",
"authenticationMethod" : "password"
},
{
"id" : "voice",
"displayName" : "Voice",
"authenticationMethod" : "voice"
},
{
"id" : "softwareOath",
"displayName" : "Software OATH tokens",
"authenticationMethod" : "softwareOath"
},
{
"id" : "sms",
"displayName" : "SMS",
"authenticationMethod" : "sms"
},
{
"id" : "fido2",
"displayName" : "FIDO2 Security Key",
"authenticationMethod" : "fido2"
},
{
"id" : "windowsHelloForBusiness",
"displayName" : "Windows Hello for Business",
"authenticationMethod" : "windowsHelloForBusiness"
},
{
"id" : "microsoftAuthenticatorPush",
"displayName" : "Microsoft Authenticator (push notification)",
"authenticationMethod" : "microsoftAuthenticator"
},
{
"id" : "deviceBasedPush",
"displayName" : "Microsoft Authenticator (Passwordless)",
"authenticationMethod" : "microsoftAuthenticator"
},
{
"id" : "temporaryAccessPassOneTime",
"displayName" : "Temporary Access Pass (one-time use)",
"authenticationMethod" : "temporaryAccessPass"
},
{
"id" : "temporaryAccessPassMultiUse",
"displayName" : "Temporary Access Pass (multi-use)",
"authenticationMethod" : "temporaryAccessPass"
},
{
"id" : "email",
"displayName" : "Email one-time passcode",
"authenticationMethod" : "email"
},
{
"id" : "x509CertificateSingleFactor",
"displayName" : "Certificate-based authentication (single factor)",
"authenticationMethod" : "x509Certificate"
},
{
"id" : "federatedMultiFactor",
"displayName" : "Federation (multifactor)",
"authenticationMethod" : "federation"
},
{
"id" : "federatedSingleFactor",
"displayName" : "Federation (single factor)",
"authenticationMethod" : "federation"
},
{
"id": "x509CertificateMultiFactor",
"displayName" : "Certificate-based authentication (multifactor)",
"authenticationMethod" : "x509Certificate"
}
]
}
例 2: 許可された認証の組み合わせを取得する
要求
次の例は、authenticationStrengthPolicy オブジェクトで使用できる使用可能なすべての組み合わせ (allowedCombinations) を表す authenticationCombinations オブジェクトのフラット コレクションを取得する要求を示しています。
GET https://graph.microsoft.com/v1.0/identity/conditionalAccess/authenticationStrength/combinations
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#identity/conditionalAccess/authenticationStrength/combinations",
"value": [
"windowsHelloForBusiness",
"fido2",
"x509CertificateMultiFactor",
"deviceBasedPush",
"temporaryAccessPassOneTime",
"temporaryAccessPassMultiUse",
"password,microsoftAuthenticatorPush",
"password,softwareOath",
"password,hardwareOath",
"password,sms",
"password,voice",
"federatedMultiFactor",
"microsoftAuthenticatorPush,federatedSingleFactor",
"softwareOath,federatedSingleFactor",
"hardwareOath,federatedSingleFactor",
"sms,federatedSingleFactor",
"voice,federatedSingleFactor",
"x509CertificateSingleFactor",
"sms",
"password",
"federatedSingleFactor",
"email"
]
}