Devices: setState

设置是启用还是停用设备对 Google 服务的访问权限。 只有在 Google 管理控制台中启用了在 Android 设备上强制执行 EMM 政策,设备状态才会生效。否则,系统会忽略设备状态,并允许所有设备访问 Google 服务。只有 Google 管理的用户才能执行此操作。

请求

HTTP 请求

PUT https://www.googleapis.com/androidenterprise/v1/enterprises/enterpriseId/users/userId/devices/deviceId/state

参数

参数名称 说明
路径参数
deviceId string 设备的 ID。
enterpriseId string 企业 ID。
userId string 用户的 ID。

授权

此请求需要获得以下范围的授权:

范围
https://www.googleapis.com/auth/androidenterprise

如需了解详情,请参阅身份验证和授权页面。

请求正文

在请求正文中,请按以下结构提供数据:

{
  "kind": "androidenterprise#deviceState",
  "accountState": string
}
属性名称 说明 备注
accountState string 设备上 Google 帐号的状态。“已启用”表示设备上的 Google 帐号可用于访问 Google 服务(包括 Google Play),而“已停用”则表示帐号无法访问。新设备最初处于“已停用”状态。

可接受的值:
  • disabled
  • enabled
kind string

响应

如果成功,此方法将返回采用以下结构的响应正文:

{
  "kind": "androidenterprise#deviceState",
  "accountState": string
}
属性名称 说明 备注
accountState string 设备上 Google 帐号的状态。“已启用”表示设备上的 Google 帐号可用于访问 Google 服务(包括 Google Play),而“已停用”则表示帐号无法访问。新设备最初处于“已停用”状态。

可接受的值:
  • disabled
  • enabled
kind string