Is there a way to create an issue with type 10100 "Task" with a parent issue of a type 10001 "story" using Jira api, because whenever i try this it responses that the issue id 10100 cannot have a parent, despite that I used to do so using Jira GUI.
I am using Postman to test that out, below is the json object i am sending
{
"update": {},
"fields": {
"project": {
"id": "15100"
},
"parent": {
"key": "TFL-128"
},
"issuetype": {
"id": "10100"
},
"summary": "some task",
"components": [],
"description": "some desc"
}
}
So any ideas?