I am executing on of two transitions, one of them works well, the other does not. Is it possible that the difference is that one transitions to a normal state, while the other transitions to "Ticket Raised"?
... const TRANSITION_SENT = 31 // goes to 'Sent' const TRANSITION_NOT_SENT = 221 // goes to 'Ticket Raised' tid = ( ... ) ? TRANSITION_SENT : TRANSITION_NOT_SENT comment = ( ... ) ? COMMENT_SENT : COMMENT_NOT_SENT tJSON = { "update": { "comment": [ { "add": {"body": comment} }]}, "transition": { "id": tid }} jira.transitionIssue(jik, tJSON, function(err,res) { ...
One of the transitions gets a comment, but the other does not. I cannot see anything special in the transitions, neither looking at the ticket through the REST API, nor looking at it through the front end and/or workflow editor.
Is 'Foo' -> 'Ticket Raised' somehow special with respect to comments?
Hi @Sam Lander
Is "Ticket Raised" a status? If yes, and you can't write a comment via REST API, can you check if there is any status property which prohibits further editing?
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.