curl --location --request POST 'http://jira.local:8080/jira/rest//rest/api/3/app/field/value' \
--header 'Content-Type: application/json' \
--data-raw '{
"updates": [
{
"customField": "customfield_10010",
"issueIds": [
10010,
10011
],
"value": "new value"
},
{
"customField": "customfield_10011",
"issueIds": [
10010
],
"value": 1000
}
]
}'
null