I am new to JIRA API. When I create an issue in JIRA it creates that in the backlog but I want to create the issue in the Board on a certain column like "In progress". My code is below.
{
"fields": {
"summary": "New JIRA issue ",
"parent": {
"id": "10009"
},
"issuetype": {
"name": "Task",
"subtask": false
},
"project": {
"id": "10001"
},
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "Order entry fails when selecting supplier.",
"type": "text"
}
]
}
]
}
}
}
and URL is: https://_______.atlassian.net/rest/api/3/issue
Can you please help me? thank you & kindest regards.