Bulk set issues properties by list
POST
/rest/api/3/issue/properties
Issue properties
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 POST 'http://jira.local:8080/jira/rest//rest/api/3/issue/properties' \
--header 'Content-Type: application/json' \
--data-raw '{
"entitiesIds": [
0
],
"properties": {
"property1": {
"array": true,
"bigDecimal": true,
"bigInteger": true,
"bigIntegerValue": 0,
"binary": true,
"binaryValue": [
"string"
],
"boolean": true,
"booleanValue": true,
"containerNode": true,
"decimalValue": 0,
"double": true,
"doubleValue": 0,
"elements": {},
"fieldNames": {},
"fields": {},
"floatingPointNumber": true,
"int": true,
"intValue": 0,
"integralNumber": true,
"long": true,
"longValue": 0,
"missingNode": true,
"null": true,
"number": true,
"numberType": "INT",
"numberValue": 0,
"object": true,
"pojo": true,
"textValue": "string",
"textual": true,
"valueAsBoolean": true,
"valueAsDouble": 0,
"valueAsInt": 0,
"valueAsLong": 0,
"valueAsText": "string",
"valueNode": true
},
"property2": {
"array": true,
"bigDecimal": true,
"bigInteger": true,
"bigIntegerValue": 0,
"binary": true,
"binaryValue": [
"string"
],
"boolean": true,
"booleanValue": true,
"containerNode": true,
"decimalValue": 0,
"double": true,
"doubleValue": 0,
"elements": {},
"fieldNames": {},
"fields": {},
"floatingPointNumber": true,
"int": true,
"intValue": 0,
"integralNumber": true,
"long": true,
"longValue": 0,
"missingNode": true,
"null": true,
"number": true,
"numberType": "INT",
"numberValue": 0,
"object": true,
"pojo": true,
"textValue": "string",
"textual": true,
"valueAsBoolean": true,
"valueAsDouble": 0,
"valueAsInt": 0,
"valueAsLong": 0,
"valueAsText": "string",
"valueNode": true
}
}
}'
Response Response Example
303 - Example 1
{}
Request
Body Params application/json
Responses
Modified at 2023-07-13 03:27:27