The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)
I have the field below that I am passing into jira_client.create_issue(fields=issue_dict)
Everything works ok but I am trying to include more data in the jira stories thierself and I cannot figure out how to create a space or pass of something like a key value pair that will display in the description of the ticket.
I get an 400 Client Error whenever I try to experiment around and see what solutions work.
For example.
In the description I want
Class: Class
Date: Time and date
Amount of users: number of users
How can I achieve this solution by adding this to the description in python?
issue_dict = {
"project": {
"id": '<number>'
},
"summary": "test components",
"description": "New issue",
"reporter": {"name": "id"},
"issuetype": {"name": "SDLC Story"},
"priority": {
"name": "Critical"
}}
1 answer
Comments for this post are closed
Community moderators have prevented the ability to post new answers.
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.