- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Lists reports for the specified app.
By default, only the name
and resultsUri
fields are returned. You can include other fields by listing them in the fields
URL query parameter. For example, ?fields=reports(name,checks)
will return the name
and checks
fields.
HTTP request
GET https://checks.googleapis.com/v1alpha/{parent=accounts/*/apps/*}/reports
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. Resource name of the app. Example: |
Query parameters
Parameters | |
---|---|
pageSize |
Optional. The maximum number of reports to return. If unspecified, at most 10 reports will be returned. The maximum value is 50; values above 50 will be coerced to 50. |
pageToken |
Optional. A page token received from a previous Provide this to retrieve the subsequent page. When paginating, all other parameters provided to |
filter |
Optional. An AIP-160 filter string to filter reports. Example: |
checksFilter |
Optional. An AIP-160 filter string to filter checks within reports. Only checks that match the filter string are included in the response. Example: |
Request body
The request body must be empty.
Response body
The response message for ReportService.ListReports
.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"reports": [
{
object ( |
Fields | |
---|---|
reports[] |
The reports for the specified app. |
nextPageToken |
A token which can be sent as If this field is omitted, there are no subsequent pages. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/checks
For more information, see the OAuth 2.0 Overview.