AI-generated Key Takeaways
-
This page details how to list web apps for a given enterprise using an HTTP GET request.
-
The request uses a path parameter for the enterprise name and optional query parameters for pagination.
-
The request body must be empty, and the response body contains a list of web apps and a token for the next page if available.
-
The API call requires the
https://www.googleapis.com/auth/androidmanagement
authorization scope.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Lists web apps for a given enterprise.
HTTP request
GET https://androidmanagement.googleapis.com/v1/{parent=enterprises/*}/webApps
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
The name of the enterprise in the form |
Query parameters
Parameters | |
---|---|
pageSize |
The requested page size. This is a hint and the actual page size in the response may be different. |
pageToken |
A token identifying a page of results returned by the server. |
Request body
The request body must be empty.
Response body
Response to a request to list web apps for a given enterprise.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"webApps": [
{
object ( |
Fields | |
---|---|
webApps[] |
The list of web apps. |
nextPageToken |
If there are more results, a token to retrieve next page of results. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/androidmanagement
For more information, see the OAuth 2.0 Overview.