- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- ReportFilters
- TimeGranularity
- Try it!
Get a report with its computed results.
HTTP request
GET https://firebasecrashlytics.googleapis.com/v1alpha/{name=projects/*/apps/*/reports/*}
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
name |
Required. The report name. Format: "projects/{project}/apps/{app_id}/reports/{report}". |
Query parameters
| Parameters | |
|---|---|
filter |
Optional. Filters to customize the report. |
pageSize |
Optional. The maximum number of result groups to return. If omitted, defaults to 25. |
pageToken |
Optional. A page token, received from a previous call. The page token is only valid for the exact same set of filters, which must also be sent in subsequent requests. This token is valid for 10 minutes after the first request. |
granularity |
Optional. The report response will contain one data point per time grain. If omitted, the report will contain a single data point for the complete interval. |
Request body
The request body must be empty.
Response body
If successful, the response body contains an instance of Report.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platformhttps://www.googleapis.com/auth/firebase
For more information, see the OAuth 2.0 Overview.
ReportFilters
Filters for all reports. Multiple conditions for the same field are combined in an ‘OR’ expression and different fields are combined with ‘AND’. All fields are optional.
| JSON representation |
|---|
{ "interval": { object ( |
| Fields | |
|---|---|
interval |
Optional. Only count events which occurred during the time interval. Valid values are from 90 calendar days ago to the current time. The default interval for all reports is the previous 7 days. |
version |
Optional. Only count events from the given application versions. |
issue |
Optional. Only count events with the desired issue characteristics. |
operatingSystem |
Optional. Only count events from the given operating system versions. |
device |
Optional. Only count events from the given device models. |
browser |
Optional. Only count events from the given browser. |
TimeGranularity
The granularity of time intervals for reports.
| Enums | |
|---|---|
TIME_GRANULARITY_UNSPECIFIED |
Unknown. |
TIME_GRANULARITY_NONE |
Returns a single interval for the requested time range. |
TIME_GRANULARITY_HOUR |
Hour. |
TIME_GRANULARITY_DAY |
Day. |