How do create spaces in description of my jira create_issue request?

Mont May 5, 2023
Hello All,
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

0 votes
Ken McClean
Rising Star
Rising Star
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 Leaders.
May 6, 2023

Spaces are a Confluence thing, so I'm not 100% sure what you're trying to accomplish?

Suggest an answer

Log in or Sign up to answer