enrollmentTroubleshootingEvent の更新
名前空間: microsoft.graph
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
enrollmentTroubleshootingEvent オブジェクトのプロパティを更新します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
アクセス許可
この API を呼び出すには、次のいずれかのアクセス許可が必要です。 アクセス許可の選択方法などの詳細については、「アクセス許可」を参照してください。
アクセス許可の種類 | アクセス許可 (特権の小さいものから大きいものへ) |
---|---|
委任 (職場または学校のアカウント) | DeviceManagementManagedDevices.ReadWrite.All |
委任 (個人用 Microsoft アカウント) | サポートされていません。 |
アプリケーション | DeviceManagementManagedDevices.ReadWrite.All |
HTTP 要求
PATCH /deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEventId}
要求ヘッダー
ヘッダー | 値 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と承認の詳細については、こちらをご覧ください。 |
承諾 | application/json |
要求本文
要求本文で、enrollmentTroubleshootingEvent オブジェクトの JSON 表記を指定します。
次の表に、enrollmentTroubleshootingEvent の作成時に必要なプロパティを示します。
プロパティ | 型 | 説明 |
---|---|---|
id | String | オブジェクトの UUID。deviceManagementTroubleshootingEvent から継承 |
eventDateTime | DateTimeOffset | インシデントが発生した時間。 deviceManagementTroubleshootingEvent から継承します |
correlationId | String | サービスのエラーをトレースするための ID。 deviceManagementTroubleshootingEvent から継承します |
managedDeviceIdentifier | String | Intune によって作成または収集されるデバイス識別子。 |
operatingSystem | String | オペレーティング システム。 |
osVersion | String | OS バージョン。 |
userId | String | デバイスを登録しようとするユーザーの識別子。 |
deviceId | String | Azure AD デバイス識別子。 |
enrollmentType | deviceEnrollmentType | 登録の種類。 可能な値は、unknown 、userEnrollment 、deviceEnrollmentManager 、appleBulkWithUser 、appleBulkWithoutUser 、windowsAzureADJoin 、windowsBulkUserless 、windowsAutoEnrollment 、windowsBulkAzureDomainJoin 、windowsCoManagement 、windowsAzureADJoinUsingDeviceAuth 、appleUserEnrollment 、appleUserEnrollmentWithServiceAccount です。 |
failureCategory | deviceEnrollmentFailureReason | 高レベルのエラー カテゴリ。 可能な値は、unknown 、authentication 、authorization 、accountValidation 、userValidation 、deviceNotSupported 、inMaintenance 、badRequest 、featureNotSupported 、enrollmentRestrictionsEnforced 、clientDisconnected 、userAbandonment です。 |
failureReason | String | 詳細なエラーの理由。 |
応答
成功した場合、このメソッドは 200 OK
応答コードと、更新された enrollmentTroubleshootingEvent オブジェクトを応答本文で返します。
例
要求
以下は、要求の例です。
PATCH https://graph.microsoft.com/v1/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEventId}
Content-type: application/json
Content-length: 509
{
"@odata.type": "#microsoft.graph.enrollmentTroubleshootingEvent",
"eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
"correlationId": "Correlation Id value",
"managedDeviceIdentifier": "Managed Device Identifier value",
"operatingSystem": "Operating System value",
"osVersion": "Os Version value",
"userId": "User Id value",
"deviceId": "Device Id value",
"enrollmentType": "userEnrollment",
"failureCategory": "authentication",
"failureReason": "Failure Reason value"
}
応答
以下は、応答の例です。 注: 簡潔にするために、ここに示す応答オブジェクトは切り詰められている場合があります。 実際の呼び出しではすべてのプロパティが返されます。
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 558
{
"@odata.type": "#microsoft.graph.enrollmentTroubleshootingEvent",
"id": "c4a623f5-23f5-c4a6-f523-a6c4f523a6c4",
"eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
"correlationId": "Correlation Id value",
"managedDeviceIdentifier": "Managed Device Identifier value",
"operatingSystem": "Operating System value",
"osVersion": "Os Version value",
"userId": "User Id value",
"deviceId": "Device Id value",
"enrollmentType": "userEnrollment",
"failureCategory": "authentication",
"failureReason": "Failure Reason value"
}