feedback_reports
Creates, updates, deletes, gets or lists a feedback_reports
resource.
Overview
Name | feedback_reports |
Type | Resource |
Id | firebase.appdistribution.feedback_reports |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | The name of the feedback report resource. Format: projects/{project_number}/apps/{app}/releases/{release}/feedbackReports/{feedback_report} |
createTime | string (google-datetime) | Output only. The time when the feedback report was created. |
firebaseConsoleUri | string | Output only. A link to the Firebase console displaying the feedback report. |
screenshotUri | string | Output only. A signed link (which expires in one hour) that lets you directly download the screenshot. |
tester | string | Output only. The resource name of the tester who submitted the feedback report. |
text | string | Output only. The text of the feedback report. |
Successful response
Name | Datatype | Description |
---|---|---|
name | string | The name of the feedback report resource. Format: projects/{project_number}/apps/{app}/releases/{release}/feedbackReports/{feedback_report} |
createTime | string (google-datetime) | Output only. The time when the feedback report was created. |
firebaseConsoleUri | string | Output only. A link to the Firebase console displaying the feedback report. |
screenshotUri | string | Output only. A signed link (which expires in one hour) that lets you directly download the screenshot. |
tester | string | Output only. The resource name of the tester who submitted the feedback report. |
text | string | Output only. The text of the feedback report. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , appsId , releasesId , feedbackReportsId | Gets a feedback report. | |
list | select | projectsId , appsId , releasesId | pageSize , pageToken | Lists feedback reports. By default, sorts by createTime in descending order. |
delete | delete | projectsId , appsId , releasesId , feedbackReportsId | Deletes 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.
Name | Datatype | Description |
---|---|---|
appsId | string | |
feedbackReportsId | string | |
projectsId | string | |
releasesId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
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;
Lists feedback reports. By default, sorts by createTime
in descending order.
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 pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';
DELETE
examples
- delete
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;