Hi, community
I have recently used edit issue endpoint for updating issue status and other field values
but edit issue endpoint is updating value other then status transition and endpoint give 204 response code
I have used PUT /rest/api/3/issue/{issueIdOrKey} endpoint in postman with give body
{
“transition”: {
“id”:“31”
},
“fields”: {
“assignee”:null
}
}
I get 204 response code and assignee is changed to “Unassigned” but status is not changed
is I am missing something or this endpoint is not work for transition the status ?