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:
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"
},
}
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.