Рет қаралды 50
In this video I will show you how you can use Atlssian Jira Cloud Bulk Edit Issue Rest API. I will show you how you can add, remove, replace and remove_all labels with this API.
URL of the request:
/rest/api/3/bulk/issues/fields/
Body of the request:
{
"sendBulkNotification": false,
"selectedIssueIdsOrKeys": ["MAT-804"],
"selectedActions": ["labels"],
"editedFieldsInput": {
"labelsFields": [
{
"bulkEditMultiSelectFieldOption": "ADD",
"fieldId": "labels",
"labels": [
{
"name": "label1"
}
]
}
]
}
}