How do I connect using Python Script to Jira Cloud ? Can any one share sample script for connection please.
Also is there any configuration required for me to allow a "specific user" to connect to Jira Cloud? OR do I need to generate API token?
Appreciate your help.
Prasanna
Yes. You would need API token, otherwise it wouldn't work.
An example curl command would be something like this:
curl -X GET -H 'Content-Type: application/json' -u '<atlassian account email address>:<API token>' '<instanceUrl>/rest/api/3/issue/<issuekey>
For more information see JIRA Cloud API doc
This documentation also gives a good explanation on how to connect to your JIRA Cloud using Python. Have a look!
Thank you very much , I was able to connect using PostMan -Now, I will explore Python script.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome! If that works for you, please accept the answer and mark this as Solved. :)
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.