Liking cljdoc? Tell your friends :D

happygapi.androidenterprise.users

Google Play EMM API: users. Manages the deployment of apps to Android Enterprise devices. See: https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users

Google Play EMM API: users.
Manages the deployment of apps to Android Enterprise devices.
See: https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users
raw docstring

delete$clj

(delete$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/delete

Required parameters: userId, enterpriseId

Optional parameters: none

Deleted an EMM-managed user.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/delete

Required parameters: userId, enterpriseId

Optional parameters: none

Deleted an EMM-managed user.
sourceraw docstring

generateAuthenticationToken$clj

(generateAuthenticationToken$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/generateAuthenticationToken

Required parameters: userId, enterpriseId

Optional parameters: none

Generates an authentication token which the device policy client can use to provision the given EMM-managed user account on a device. The generated token is single-use and expires after a few minutes. You can provision a maximum of 10 devices per user. This call only works with EMM-managed accounts.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/generateAuthenticationToken

Required parameters: userId, enterpriseId

Optional parameters: none

Generates an authentication token which the device policy client can use to provision the given EMM-managed user account on a device. The generated token is single-use and expires after a few minutes. You can provision a maximum of 10 devices per user. This call only works with EMM-managed accounts.
sourceraw docstring

get$clj

(get$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/get

Required parameters: userId, enterpriseId

Optional parameters: none

Retrieves a user's details.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/get

Required parameters: userId, enterpriseId

Optional parameters: none

Retrieves a user's details.
sourceraw docstring

getAvailableProductSet$clj

(getAvailableProductSet$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/getAvailableProductSet

Required parameters: enterpriseId, userId

Optional parameters: none

Retrieves the set of products a user is entitled to access.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/getAvailableProductSet

Required parameters: enterpriseId, userId

Optional parameters: none

Retrieves the set of products a user is entitled to access.
sourceraw docstring

insert$clj

(insert$ auth parameters body)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/insert

Required parameters: enterpriseId

Optional parameters: none

Body:

{:displayName string, :managementType string, :id string, :accountIdentifier string, :accountType string, :primaryEmail string}

Creates a new EMM-managed user. The Users resource passed in the body of the request should include an accountIdentifier and an accountType. If a corresponding user already exists with the same account identifier, the user will be updated with the resource. In this case only the displayName field can be changed.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/insert

Required parameters: enterpriseId

Optional parameters: none

Body: 

{:displayName string,
 :managementType string,
 :id string,
 :accountIdentifier string,
 :accountType string,
 :primaryEmail string}

Creates a new EMM-managed user. The Users resource passed in the body of the request should include an accountIdentifier and an accountType. If a corresponding user already exists with the same account identifier, the user will be updated with the resource. In this case only the displayName field can be changed.
sourceraw docstring

list$clj

(list$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/list

Required parameters: enterpriseId, email

Optional parameters: none

Looks up a user by primary email address. This is only supported for Google-managed users. Lookup of the id is not needed for EMM-managed users because the id is already returned in the result of the Users.insert call.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/list

Required parameters: enterpriseId, email

Optional parameters: none

Looks up a user by primary email address. This is only supported for Google-managed users. Lookup of the id is not needed for EMM-managed users because the id is already returned in the result of the Users.insert call.
sourceraw docstring

revokeDeviceAccess$clj

(revokeDeviceAccess$ auth parameters)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/revokeDeviceAccess

Required parameters: enterpriseId, userId

Optional parameters: none

Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices. This call only works with EMM-managed accounts.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/revokeDeviceAccess

Required parameters: enterpriseId, userId

Optional parameters: none

Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices. This call only works with EMM-managed accounts.
sourceraw docstring

setAvailableProductSet$clj

(setAvailableProductSet$ auth parameters body)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/setAvailableProductSet

Required parameters: enterpriseId, userId

Optional parameters: none

Body:

{:productId [string], :productVisibility [{:tracks [string], :trackIds [string], :productId string}], :productSetBehavior string}

Modifies the set of products that a user is entitled to access (referred to as whitelisted products). Only products that are approved or products that were previously approved (products with revoked approval) can be whitelisted.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/setAvailableProductSet

Required parameters: enterpriseId, userId

Optional parameters: none

Body: 

{:productId [string],
 :productVisibility [{:tracks [string],
                      :trackIds [string],
                      :productId string}],
 :productSetBehavior string}

Modifies the set of products that a user is entitled to access (referred to as *whitelisted* products). Only products that are approved or products that were previously approved (products with revoked approval) can be whitelisted.
sourceraw docstring

update$clj

(update$ auth parameters body)

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/update

Required parameters: enterpriseId, userId

Optional parameters: none

Body:

{:displayName string, :managementType string, :id string, :accountIdentifier string, :accountType string, :primaryEmail string}

Updates the details of an EMM-managed user. Can be used with EMM-managed users only (not Google managed users). Pass the new details in the Users resource in the request body. Only the displayName field can be changed. Other fields must either be unset or have the currently active value.

https://developers.google.com/android/work/play/emm-apiapi/reference/rest/v1/users/update

Required parameters: enterpriseId, userId

Optional parameters: none

Body: 

{:displayName string,
 :managementType string,
 :id string,
 :accountIdentifier string,
 :accountType string,
 :primaryEmail string}

Updates the details of an EMM-managed user. Can be used with EMM-managed users only (not Google managed users). Pass the new details in the Users resource in the request body. Only the displayName field can be changed. Other fields must either be unset or have the currently active value.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close