Hello, how can I access the API of a step in creating JIRA workflow?
For example, developers need to click 'submit changes' on JIRA after submitting code. How can I get the API related to 'submitting changes'?I want to use Python to realize relevant functions. Do you have any relevant methods or documents?
Thanks in Advance!!
HEllO,
Thanks for that,and
Do you know how to edit multiple statements in this?
jira.transition_issue(issue, '5', fields: {'assignee':{'name': 'pm_user'}, 'resolution':{'id': '3'}})
Can you give me an example?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello!
Try this link: https://developer.atlassian.com/server/jira/platform/jira-rest-api-example-edit-issues-6291632/
Here you have a editing examples.
Basically you need to reference the item key in your call and choose the ID of the fields you need to edit.
Cheers!
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.