curl --location --request PUT 'http://jira.local:8080/jira/rest//rest/api/3/statuses' \
--header 'Content-Type: application/json' \
--data-raw '{
"statuses": [
{
"description": "The issue is resolved",
"id": "1000",
"name": "Finished",
"statusCategory": "DONE"
}
]
}'
null