Does the JIRA REST API require submitting a transition ID when transitioning an issue?
问题 If I POST an issue transition like this: { "fields" : { "resolution" : { "name" : "Fixed" } } } ...I get this error: { "errorMessages" : ["Missing 'transition' identifier"], "errors" : {} } This seems to imply that I need to include a transition ID along with my list of changed fields. https://stackoverflow.com/a/14642966/565869 seems to say the same. Fine. However, transition IDs appear to be global. It's not enough to look up the highest transition ID for this issue and increment it; such