Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Python jira create a issue in epic

Yuuki
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 11, 2023

I create a  epic,such as :"Prj001" in jira ,then I want to create a story under this epic ,how can I realize with python

1 answer

0 votes
Rudy Holtkamp
Community Champion
October 12, 2023

Hi @Yuuki 

Welcome to the community.

When you using the Atlassian Python API package, you can do this:

fields = {
'summary': 'New story',
'Epic Link': 'PRJ-1' }


jira.issue_create(fields)

 Where PRJ-1 is the key of the Epic you mentioned.

Suggest an answer

Log in or Sign up to answer