Skip to main content
POST
/
v1
/
projects
/
{project}
/
issues:batchUpdateStatus
cURL
curl --request POST \
  --url https://api.example.com/v1/projects/{project}/issues:batchUpdateStatus \
  --header 'Content-Type: application/json' \
  --data '
{
  "parent": "<string>",
  "issues": [
    "<string>"
  ],
  "status": "ISSUE_STATUS_UNSPECIFIED",
  "reason": "<string>"
}
'
{}

Path Parameters

project
string
required

The project id.

Body

application/json
parent
string
required

The parent resource shared by all issues being updated. Format: projects/{project} If the operation spans parents, a dash (-) may be accepted as a wildcard. We only support updating the status of databases for now.

issues
string[]

The list of issues to update. Format: projects/{project}/issues/{issue}

status
enum<string>

The new status.

Available options:
ISSUE_STATUS_UNSPECIFIED,
OPEN,
DONE,
CANCELED
reason
string

The reason for the status change.

Response

OK

The response is of type object.