appConsentRequest リソースの種類

名前空間: microsoft.graph

特定のアプリケーション の userConsentRequest オブジェクトのコレクション。

メソッド

メソッド 戻り値の種類 説明
appConsentRequests の一覧表示 appConsentRequest コレクション appConsentRequest オブジェクトとそのプロパティのコレクションを取得します。
appConsentRequest を取得する appConsentRequest appConsentRequestオブジェクトのプロパティとリレーションシップを読み取る。
filterByCurrentUser appConsentRequest 現在のユーザーがレビュー者であり、ユーザー同意要求の状態がである appConsentRequest オブジェクトのプロパティを読み取る InProgress

プロパティ

プロパティ 種類 説明
appDisplayName String 同意が要求されるアプリの表示名。 必須です。 サポート $filter ( eq のみ) と $orderby .
appId String アプリケーションの識別子。 必須です。 サポート $filter ( eq のみ) と $orderby .
id 文字列 アプリの同意要求の識別子。 必須です。
pendingScopes appConsentRequestScope コレクション 承認を待機している保留中のスコープの一覧。 必須です。

リレーションシップ

リレーションシップ 説明
userConsentRequests userConsentRequest コレクション 保留中のユーザー同意要求の一覧。

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@odata.type": "#microsoft.graph.appConsentRequest",
  "id": "String (identifier)",
  "appId": "String",
  "appDisplayName": "String",
  "pendingScopes": [
    {
      "@odata.type": "microsoft.graph.appConsentRequestScope"
    }
  ]
}