Skip to main content

users_crash_reports

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

Overview

Nameusers_crash_reports
TypeResource
Idfirebase.firebasecrashlytics.users_crash_reports

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_crash_reportsdeleteprojectsId, appsId, usersIdEnqueues a request to permanently remove crash reports associated with the specified user. All reports belonging to the specified user will be deleted typically within 24 hours of receiving the crash 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
projectsIdstring
usersIdstring

DELETE examples

Enqueues a request to permanently remove crash reports associated with the specified user. All reports belonging to the specified user will be deleted typically within 24 hours of receiving the crash report.

DELETE FROM firebase.firebasecrashlytics.users_crash_reports
WHERE projectsId = '{{ projectsId }}' --required
AND appsId = '{{ appsId }}' --required
AND usersId = '{{ usersId }}' --required
;