- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- DeviceRequestingExtensionDetails
- Try it!
Get a list of devices that have requested to install an extension.
HTTP request
GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/apps:fetchDevicesRequestingExtension
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 requesting devices. |
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 devices that have requested the queried extension.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"deviceDetails": [
{
object ( |
Fields | |
---|---|
device |
Details of devices that have requested the queried extension. |
total |
Optional. Total number of devices in response. |
next |
Optional. Token to specify the next page in the list. Token expires after 1 day. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/chrome.management.appdetails.readonly
DeviceRequestingExtensionDetails
Details of a device requesting an extension, including the name of the device and the justification of the request.
JSON representation |
---|
{ "deviceName": string, "justification": string } |
Fields | |
---|---|
device |
The name of a device that has requested the extension. |
justification |
Request justification as entered by the user. |