windowsInformationProtectionWipeAction を作成する
名前空間: microsoft.graph
大事な: /beta バージョンの Microsoft Graph API は変更される可能性があります。運用環境での使用はサポートされていません。
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
新しい windowsInformationProtectionWipeAction オブジェクトを 作成します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
アクセス許可
この API を呼び出すには、次のいずれかのアクセス許可が必要です。 アクセス許可の選択方法などの詳細については、「アクセス許可」を参照してください。
アクセス許可の種類 | アクセス許可 (特権の小さいものから大きいものへ) |
---|---|
委任 (職場または学校のアカウント) | DeviceManagementConfiguration.ReadWrite.All、DeviceManagementApps.ReadWrite.All |
委任 (個人用 Microsoft アカウント) | サポートされていません。 |
アプリケーション | DeviceManagementConfiguration.ReadWrite.All、DeviceManagementApps.ReadWrite.All |
HTTP 要求
POST /deviceAppManagement/windowsInformationProtectionWipeActions
要求ヘッダー
ヘッダー | 値 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
承諾 | application/json |
要求本文
要求本文で、windowsInformationProtectionWipeAction オブジェクトの JSON 表現を指定します。
次の表は、windowsInformationProtectionWipeAction を作成するときに必要なプロパティを示しています。
プロパティ | 型 | 説明 |
---|---|---|
id | String | エンティティのキー。 |
status | actionState | ワイプ アクションの状態。 可能な値は、none 、pending 、canceled 、active 、done 、failed 、notSupported です。 |
targetedUserId | String | このワイプ アクションの対象となる UserId。 |
targetedDeviceRegistrationId | String | このワイプ アクションの対象となる DeviceRegistrationId。 |
targetedDeviceName | String | ターゲット デバイス名。 |
targetedDeviceMacAddress | String | ターゲット デバイスの Mac アドレス。 |
lastCheckInDateTime | DateTimeOffset | このワイプ アクションの対象となったデバイスの最終チェックイン時刻。 |
応答
成功した場合、このメソッドは応答コード 201 Created
と、応答本文に windowsInformationProtectionWipeAction オブジェクトを返します。
例
要求
以下は、要求の例です。
POST https://graph.microsoft.com/beta/deviceAppManagement/windowsInformationProtectionWipeActions
Content-type: application/json
Content-length: 412
{
"@odata.type": "#microsoft.graph.windowsInformationProtectionWipeAction",
"status": "pending",
"targetedUserId": "Targeted User Id value",
"targetedDeviceRegistrationId": "Targeted Device Registration Id value",
"targetedDeviceName": "Targeted Device Name value",
"targetedDeviceMacAddress": "Targeted Device Mac Address value",
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00"
}
応答
以下は、応答の例です。 注: 簡潔にするために、ここに示す応答オブジェクトは切り詰められている場合があります。 実際の呼び出しではすべてのプロパティが返されます。
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 461
{
"@odata.type": "#microsoft.graph.windowsInformationProtectionWipeAction",
"id": "2620a996-a996-2620-96a9-202696a92026",
"status": "pending",
"targetedUserId": "Targeted User Id value",
"targetedDeviceRegistrationId": "Targeted Device Registration Id value",
"targetedDeviceName": "Targeted Device Name value",
"targetedDeviceMacAddress": "Targeted Device Mac Address value",
"lastCheckInDateTime": "2016-12-31T23:59:56.413532-08:00"
}