- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- UserRequestingExtensionDetails
- Try it!
Get a list of users that have requested to install an extension.
HTTP request
GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/apps:fetchUsersRequestingExtension
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
customer |
Required. The customer ID or "my_customer" prefixed with "customers/". |
Query parameters
Parameters | |
---|---|
extension |
Required. The extension for which we want to find the requesting users. |
page |
Optional. Maximum number of results to return. Maximum and default are 50. Any page size larger than 50 will be coerced to 50. |
page |
Optional. Token to specify the page of the request to be returned. Token expires after 1 day. |
org |
The ID of the organizational unit. Only consider devices that directly belong to this org unit, i.e. sub-orgunits are not counted. If omitted, all data will be returned. |
Request body
The request body must be empty.
Response body
Response containing a list of users that have requested the queried extension.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"userDetails": [
{
object ( |
Fields | |
---|---|
user |
Details of users that have requested the queried extension. |
total |
Total number of users in response. |
next |
Token to specify the next page in the list. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/chrome.management.appdetails.readonly
UserRequestingExtensionDetails
Details of a user requesting an extension, including the email and the justification.
JSON representation |
---|
{ "email": string, "justification": string } |
Fields | |
---|---|
email |
The e-mail address of a user that has requested the extension. |
justification |
Request justification as entered by the user. |