You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am facing a problem with the robot framework multipart option of the REST API, I tried to create a new test execution and import the result of the output.xml thanks to curl but REST do not accept my json file below :
{
"fields":{
"summary":"Test execution from Robot Framework",
"issuetype":{
"id":"10004"
},
"project":{
"id":"10301"
},
"fixVersions":[
{
"set":{
"id":"10300"
}
}
]
}
}
Rest give me this output :
fixVersions: Fixed version (s) is required.
Thanks for your time !
I'm not sure why you have put in the "set" part of the value. fixVersions expects an array of version objects, which doesn't need any control on top of the array indicators.
Try:
"fixVersions":[{"id":"10300"}, {"id":"10301"}]
(Obviously, remove the 10301 element, I've added it to show that it's an array)
Also, you can get this error if the version selected is not for the project you are in, so it may be worth checking that too.
Thanks a lot for your reply, I tried your solution before but wasn't working, I resolve the problem this morning, it was my robotframework xml.
Dont know why but Jira do not accept it and ask me the fixVersions.
I tried with the robot framework example xml and all is working !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.