Hello all,
I try to make JSON import of Xray issues into my project in Jira Data Center instance. I found this JSON field annotation:
{
"fields":{
"project":{
"key":"TEST"
},
"summary":"test bug summary",
"description":"test bug description",
"issuetype":{
"name":"Bug"
},
"priority":{
"name":"Major"
}
},
"update":{
"issuelinks":[
{
"add":{
"type":{
"name":"Blocks",
"inward":"is blocked by",
"outward":"blocks"
},
"outwardIssue":{
"key":"TEST-1"
}
}
}
]
}
}
All is fine, but I don't know wtah the name of link I have to use.. My inward would to be "tests" and outward - "tested by". But what the type name?
Best regards,
Olga