Bulk set issue property
PUT
/rest/api/3/issue/properties/{propertyKey}
Issue properties
entityIds
Only issues from this list are eligible.currentValue
Only issues with the property set to this value are eligible.hasProperty
:currentValue
and hasProperty
as false would not match any issues (because without the property the property cannot have a value).location
link in the response to determine the status of the task and use Get task to obtain subsequent updates.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://jira.local:8080/jira/rest//rest/api/3/issue/properties/' \
--header 'Content-Type: application/json' \
--data-raw '{
"filter": {
"currentValue": {
"owner": "admin",
"weight": 50
},
"entityIds": [
10100,
100010
],
"hasProperty": true
},
"value": {
"owner": "admin",
"weight": 100
}
}'
Response Response Example
303 - Example 1
{}
Request
Path Params
propertyKey
stringÂ
required
Body Params application/json
Responses
Modified at 2023-07-13 03:27:27