秘密度ラベルの一覧表示
名前空間: microsoft.graph.security
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
ユーザーまたはorganizationに関連付けられている sensitivityLabel オブジェクトの一覧を取得します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「 アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、 アクセス許可のリファレンスを参照してください。
アクセス許可の種類 | 最小特権アクセス許可 | 特権の高いアクセス許可 |
---|---|---|
委任 (職場または学校のアカウント) | InformationProtectionPolicy.Read | 注意事項なし。 |
委任 (個人用 Microsoft アカウント) | サポートされていません。 | サポートされていません。 |
アプリケーション | InformationProtectionPolicy.Read.All | 注意事項なし。 |
HTTP 要求
サインインしているユーザー (委任されたアクセス許可) または指定したユーザー (アプリケーションのアクセス許可) で使用できるラベルを取得するには:
GET /users/{usersId}/security/informationProtection/sensitivityLabels
GET /me/security/informationProtection/sensitivityLabels
サービス プリンシパルとしてorganizationで使用できるラベルを取得するには (アプリケーションのアクセス許可):
GET /security/informationProtection/sensitivityLabels
省略可能なクエリ パラメーター
また、このメソッドは応答をカスタマイズするための一部の OData クエリ パラメーターをサポートします。 一般的な情報については、「OData クエリ パラメーター」を参照してください。
要求ヘッダー
名前 | 説明 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と承認の詳細については、こちらをご覧ください。 |
User-Agent | 呼び出し元のアプリケーションの名前とバージョンについて説明します。 Azure Information Protection Analytics で詳細が表示されます。 推奨される形式は です ApplicationName/Version 。 省略可能です。 |
要求本文
このメソッドには、要求本文を指定しません。
応答
成功した場合、このメソッドは 200 OK
応答コードと、応答本文の sensitivityLabel オブジェクトのコレクションを返します。
例
要求
次の例は要求を示しています。
GET https://graph.microsoft.com/beta/users/bob@contoso.com/security/informationProtection/sensitivityLabels
応答
次の例は応答を示しています。
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('bob%40contoso.com')/security/informationProtection/sensitivityLabels",
"value": [
{
"id": "0d39dc11-75ff-4309-8b32-ff94f0e41607",
"name": "Any User (No Protection)",
"description": "",
"color": "",
"sensitivity": 7,
"tooltip": "The most sensitive information stored by Milt0rCorp; product plans, customer information, and other trade secrets. Data labeled for Any User will not be protected and should be used with caution and sparingly.",
"isActive": true,
"isAppliable": true,
"contentFormats": [
"file",
"email",
"schematizeddata"
],
"hasProtection": false,
"parent@odata.context": "https://graph.microsoft.com/beta/$metadata#users('bob%40constoso.com')/security/informationProtection/sensitivityLabels('0d39dc11-75ff-4309-8b32-ff94f0e41607')/parent/$entity",
"parent": {
"id": "566663c7-4d8d-4b8f-b280-784a31971dbe",
"name": "Highly Confidential",
"description": "",
"color": "",
"sensitivity": 7,
"tooltip": "The most sensitive information at Milt0rCorp; product plans, customer information, data not shareable even under NDA.",
"isActive": false,
"isAppliable": false,
"contentFormats": [
"file",
"email",
"schematizeddata"
],
"hasProtection": false,
"parent@odata.context": "https://graph.microsoft.com/beta/$metadata#users('bob%40contoso.com')/security/informationProtection/sensitivityLabels('0d39dc11-75ff-4309-8b32-ff94f0e41607')/parent/parent/$entity",
"parent": null
}
}
]
}