users_crash_reports
Creates, updates, deletes, gets or lists a users_crash_reports resource.
Overview
| Name | users_crash_reports |
| Type | Resource |
| Id | firebase.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete_crash_reports | delete | projectsId, appsId, usersId | 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. |
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 | |
projectsId | string | |
usersId | string |
DELETE examples
- delete_crash_reports
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
;