创建 deviceManagementAutopilotEvent

命名空间:microsoft.graph

重要: Microsoft /beta 版本下的 Graph API 可能会发生更改;不支持生产使用。

注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证

创建新的 deviceManagementAutopilotEvent 对象。

此 API 可用于以下国家级云部署

全局服务 美国政府 L4 美国政府 L5 (DOD) 由世纪互联运营的中国

权限

要调用此 API,需要以下权限之一。 若要了解详细信息,包括如何选择权限的信息,请参阅权限

权限类型 权限(从最低特权到最高特权)
委派(工作或学校帐户) DeviceManagementConfiguration.ReadWrite.All、DeviceManagementManagedDevices.ReadWrite.All
委派(个人 Microsoft 帐户) 不支持。
应用程序 DeviceManagementConfiguration.ReadWrite.All、DeviceManagementManagedDevices.ReadWrite.All

HTTP 请求

POST /deviceManagement/autopilotEvents

请求标头

标头
Authorization 持有者 {token}。 必填。 详细了解 身份验证和授权
接受 application/json

请求正文

在请求正文中,提供 deviceManagementAutopilotEvent 对象的 JSON 表示形式。

下表显示了创建 deviceManagementAutopilotEvent 时所需的属性。

属性 类型 说明
id String 对象的 UUID
deviceId String 与 对象关联的设备 ID
userId String 与 对象关联的 UserId ID
eventDateTime DateTimeOffset 事件发生的时间。
deviceRegisteredDateTime DateTimeOffset 设备注册日期。
enrollmentStartDateTime DateTimeOffset 设备注册开始日期。
enrollmentType windowsAutopilotEnrollmentType 注册类型。 可取值为:unknownazureADJoinedWithAutopilotProfileofflineDomainJoinedazureADJoinedUsingDeviceAuthWithAutopilotProfileazureADJoinedUsingDeviceAuthWithoutAutopilotProfileazureADJoinedWithOfflineAutopilotProfileazureADJoinedWithWhiteGloveofflineDomainJoinedWithWhiteGloveofflineDomainJoinedWithOfflineAutopilotProfile
deviceSerialNumber String 设备序列号。
managedDeviceName String 托管设备名称。
userPrincipalName String 用于注册设备的用户主体名称。
windowsAutopilotDeploymentProfileDisplayName String Autopilot 配置文件名称。
enrollmentState enrollmentState 注册状态,例如“已注册”、“失败”。 可取值为:unknownenrolledpendingResetfailednotContactedblocked
windows10EnrollmentCompletionPageConfigurationDisplayName String 注册状态页配置文件名称
windows10EnrollmentCompletionPageConfigurationId String 注册状态页配置文件 ID
deploymentState windowsAutopilotDeploymentState 部署状态,例如 Success、Failure、InProgress、SuccessWithTimeout。 可取值为:unknownsuccessinProgressfailuresuccessWithTimeoutnotAttempteddisabledsuccessOnRetry
deviceSetupStatus windowsAutopilotDeploymentState 注册状态页的设备设置阶段的部署状态。 可取值为:unknownsuccessinProgressfailuresuccessWithTimeoutnotAttempteddisabledsuccessOnRetry
accountSetupStatus windowsAutopilotDeploymentState 注册状态页的帐户设置阶段的部署状态。 可取值为:unknownsuccessinProgressfailuresuccessWithTimeoutnotAttempteddisabledsuccessOnRetry
osVersion String 设备操作系统版本。
deploymentDuration 持续时间 Autopilot 部署持续时间,包括注册。
deploymentTotalDuration 持续时间 从注册到桌面屏幕的总部署持续时间。
deviceSetupDuration 持续时间 在设备 ESP 中花费的时间。
accountSetupDuration 持续时间 在用户 ESP 中花费的时间。
deploymentStartDateTime DateTimeOffset 部署开始时间。
deploymentEndDateTime DateTimeOffset 部署结束时间。
enrollmentFailureDetails String 注册失败详细信息。

响应

如果成功,此方法在 201 Created 响应正文中返回响应代码和 deviceManagementAutopilotEvent 对象。

示例

请求

下面是一个请求示例。

POST https://graph.microsoft.com/beta/deviceManagement/autopilotEvents
Content-type: application/json
Content-length: 1468

{
  "@odata.type": "#microsoft.graph.deviceManagementAutopilotEvent",
  "deviceId": "Device Id value",
  "userId": "User Id value",
  "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
  "deviceRegisteredDateTime": "2017-01-01T00:02:48.7185581-08:00",
  "enrollmentStartDateTime": "2017-01-01T00:00:19.6280481-08:00",
  "enrollmentType": "azureADJoinedWithAutopilotProfile",
  "deviceSerialNumber": "Device Serial Number value",
  "managedDeviceName": "Managed Device Name value",
  "userPrincipalName": "User Principal Name value",
  "windowsAutopilotDeploymentProfileDisplayName": "Windows Autopilot Deployment Profile Display Name value",
  "enrollmentState": "enrolled",
  "windows10EnrollmentCompletionPageConfigurationDisplayName": "Windows10Enrollment Completion Page Configuration Display Name value",
  "windows10EnrollmentCompletionPageConfigurationId": "Windows10Enrollment Completion Page Configuration Id value",
  "deploymentState": "success",
  "deviceSetupStatus": "success",
  "accountSetupStatus": "success",
  "osVersion": "Os Version value",
  "deploymentDuration": "PT3M21.5549443S",
  "deploymentTotalDuration": "PT1M43.5284261S",
  "deviceSetupDuration": "-PT2M57.2190107S",
  "accountSetupDuration": "-PT2M32.0507894S",
  "deploymentStartDateTime": "2016-12-31T23:59:37.257201-08:00",
  "deploymentEndDateTime": "2017-01-01T00:00:46.5128291-08:00",
  "enrollmentFailureDetails": "Enrollment Failure Details value"
}

响应

下面是一个响应示例。 注意:为简洁起见,可能会截断此处显示的响应对象。 将从实际调用中返回所有属性。

HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 1517

{
  "@odata.type": "#microsoft.graph.deviceManagementAutopilotEvent",
  "id": "3e455cab-5cab-3e45-ab5c-453eab5c453e",
  "deviceId": "Device Id value",
  "userId": "User Id value",
  "eventDateTime": "2016-12-31T23:59:23.3984029-08:00",
  "deviceRegisteredDateTime": "2017-01-01T00:02:48.7185581-08:00",
  "enrollmentStartDateTime": "2017-01-01T00:00:19.6280481-08:00",
  "enrollmentType": "azureADJoinedWithAutopilotProfile",
  "deviceSerialNumber": "Device Serial Number value",
  "managedDeviceName": "Managed Device Name value",
  "userPrincipalName": "User Principal Name value",
  "windowsAutopilotDeploymentProfileDisplayName": "Windows Autopilot Deployment Profile Display Name value",
  "enrollmentState": "enrolled",
  "windows10EnrollmentCompletionPageConfigurationDisplayName": "Windows10Enrollment Completion Page Configuration Display Name value",
  "windows10EnrollmentCompletionPageConfigurationId": "Windows10Enrollment Completion Page Configuration Id value",
  "deploymentState": "success",
  "deviceSetupStatus": "success",
  "accountSetupStatus": "success",
  "osVersion": "Os Version value",
  "deploymentDuration": "PT3M21.5549443S",
  "deploymentTotalDuration": "PT1M43.5284261S",
  "deviceSetupDuration": "-PT2M57.2190107S",
  "accountSetupDuration": "-PT2M32.0507894S",
  "deploymentStartDateTime": "2016-12-31T23:59:37.257201-08:00",
  "deploymentEndDateTime": "2017-01-01T00:00:46.5128291-08:00",
  "enrollmentFailureDetails": "Enrollment Failure Details value"
}