Dear all,
I have a case where I need to create a certain amount of parent issue and their corresponding child task, this using Autmation.
I have quite many parents and tasks to create and doing that in a flow step in Automation rule takes quite a lot of action and condition.
I was thinking to use instead the Send Web Request action and full the body with parent and child relation to be created.
I have try by using the following body, but that way creates only the Task and Parent is ignored
{
"fields": {
"project":
{
"key": "PRJ-A"
},
"parent":
{
"summary": "Title project A",
"description": "test",
"issuetype": {
"name": "Story"
}
},
"summary": "Child of parent Story",
"description": "child of Title project A",
"issuetype":
{
"name": "Task"
}
}
}
What is wrong in this body that it does not create the parent story and create its own task ?
Thanks for help
regard