Method: projects.apps.releases.feedbackReports.list

Lists feedback reports. By default, sorts by createTime in descending order.

HTTP request

GET https://firebaseappdistribution.googleapis.com/v1/{parent=projects/*/apps/*/releases/*}/feedbackReports

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The name of the release resource, which is the parent of the feedback report resources.

Format: projects/{projectNumber}/apps/{app}/releases/{release}

Authorization requires the following IAM permission on the specified resource parent:

  • firebaseappdistro.releases.list

Query parameters

Parameters
pageSize

integer

The maximum number of feedback reports to return. The service may return fewer than this value.

The valid range is [1-100]; If unspecified (0), at most 25 feedback reports are returned. Values above 100 are coerced to 100.

pageToken

string

A page token, received from a previous feedbackReports.list call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to feedbackReports.list must match the call that provided the page token.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

The response message for feedbackReports.list.

JSON representation
{
  "feedbackReports": [
    {
      object (FeedbackReport)
    }
  ],
  "nextPageToken": string
}
Fields
feedbackReports[]

object (FeedbackReport)

The feedback reports

nextPageToken

string

A short-lived token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

Authorization Scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the OAuth 2.0 Overview.