I am attempting to update an issue status from backlog to assessment through Postman but am not having any success. I've only seen answers for how to do this through curl, which I do not have access to. Currently, I am attempting a POST with "https://<company url>/rest/api/2/issue/<issueID>/transitions" and the following body:
Hi,
can you try to remove the "fields" from your body?
{ "transition": { "id": "2" }}
You can only specify fields for the transition that are also on the transition screen.The status is set through the transition (and not directly by the user), so you do not need to provide that value.
I have tried this but I get the same error.
Try removing the update line as well.. Just transition line would suffice as follows, while the POST URL would still be same as https://jira-dev.abcd.com/rest/api/2/issue/<Jira Issue Key>/transitions { "transition": { "id": "2" },}
It looks like you're new here. Sign in or register to get started.