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>"
}
'{}Updates the status of multiple issues in a single operation. Permissions required: bb.issues.update
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>"
}
'{}The project id.
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.
The list of issues to update. Format: projects/{project}/issues/{issue}
The new status.
ISSUE_STATUS_UNSPECIFIED, OPEN, DONE, CANCELED The reason for the status change.
OK
The response is of type object.
Was this page helpful?