Skip to main content

feedback_reports

Creates, updates, deletes, gets or lists a feedback_reports resource.

Overview

Namefeedback_reports
TypeResource
Idfirebase.appdistribution.feedback_reports

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe name of the feedback report resource. Format: projects/{project_number}/apps/{app}/releases/{release}/feedbackReports/{feedback_report}
createTimestring (google-datetime)Output only. The time when the feedback report was created.
firebaseConsoleUristringOutput only. A link to the Firebase console displaying the feedback report.
screenshotUristringOutput only. A signed link (which expires in one hour) that lets you directly download the screenshot.
testerstringOutput only. The resource name of the tester who submitted the feedback report.
textstringOutput only. The text of the feedback report.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, appsId, releasesId, feedbackReportsIdGets a feedback report.
listselectprojectsId, appsId, releasesIdpageSize, pageTokenLists feedback reports. By default, sorts by createTime in descending order.
deletedeleteprojectsId, appsId, releasesId, feedbackReportsIdDeletes a feedback report.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
appsIdstring
feedbackReportsIdstring
projectsIdstring
releasesIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Gets a feedback report.

SELECT
name,
createTime,
firebaseConsoleUri,
screenshotUri,
tester,
text
FROM firebase.appdistribution.feedback_reports
WHERE projectsId = '{{ projectsId }}' -- required
AND appsId = '{{ appsId }}' -- required
AND releasesId = '{{ releasesId }}' -- required
AND feedbackReportsId = '{{ feedbackReportsId }}' -- required;

DELETE examples

Deletes a feedback report.

DELETE FROM firebase.appdistribution.feedback_reports
WHERE projectsId = '{{ projectsId }}' --required
AND appsId = '{{ appsId }}' --required
AND releasesId = '{{ releasesId }}' --required
AND feedbackReportsId = '{{ feedbackReportsId }}' --required;