BMT SMART are looking into automating the creation of issues in Jira through a Python program or possibly through a windows 10 vb.net form.
Can you advise me on any documentation that will assist us in the goal.
Thank you in anticipation.
Hi,
You can use this Jira python client. Some examples
Thank you I am trying the following but not much of a result
"""
# This script shows how to use the client in anonymous mode
# against jira.atlassian.com.
from jira import JIRA
#import re
# By default, the client will connect to a JIRA instance started from the Atlassian Plugin SDK
# (see https://developer.atlassian.com/display/DOCS/Installing+the+Atlassian+Plugin+SDK for details).
# Override this with the options parameter.
options = {
'server': 'https://ouraccount.atlassian.net'}
jira = JIRA(options)
# Get all projects viewable by anonymous users.
projects = jira.projects()
projects = jira.projects()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
my i see the honorable logs?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
have a look at rest API examples.
I would suggest Java for this, but this is strictly a personal bias. I have great things to say about the jira java rest client :) See Jira Java Rest Client
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Want to make your everyday Community actions directly contribute to reforestation? The Atlassian Community can achieve this goal by liking a post, attending an ACE, sending your peers kudos, and so much more!
Help us plant more trees
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.