- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- UpdateIssueRequest
- Try it!
Change the state of a group of issues. This method is not atomic, so partial failures can occur. In the event of a partial failure, the request will fail and you will need to call issues.get to see which issues were not updated.
HTTP request
POST https://firebasecrashlytics.googleapis.com/v1alpha/{parent=projects/*/apps/*}/issues:batchUpdate
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
parent |
Required. The parent resource shared by all issues being updated. Format: projects/{project}/apps/{app}. If this is set, the parent field in the UpdateIssueRequest messages must either be empty or match this field. |
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{
"requests": [
{
object ( |
| Fields | |
|---|---|
requests[] |
Required. The request message specifying the resources to update. A maximum of 100 issues can be modified in a batch. |
updateMask |
Optional. The list of Issue fields to update. If this is set, the updateMask field in the UpdateIssueRequest messages must either be empty or match this field. This is a comma-separated list of fully qualified names of fields. Example: |
Response body
Response message for the issues.batchUpdate method.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"issues": [
{
object ( |
| Fields | |
|---|---|
issues[] |
Issues updated in the same order as in BatchUpdateIssuesRequest. |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platformhttps://www.googleapis.com/auth/firebase
For more information, see the OAuth 2.0 Overview.
UpdateIssueRequest
Request message for the issues.patch method.
| JSON representation |
|---|
{
"issue": {
object ( |
| Fields | |
|---|---|
issue |
Required. The issue to update. The issue's |
updateMask |
Optional. The list of Issue fields to update. Currently only "state" is mutable. This is a comma-separated list of fully qualified names of fields. Example: |