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.
When running some code in a Script Listener, specifically this POST:
def newLink = post("rest/api/3/issueLink")
.header("Content-Type", "application/json")
.body(
[
type: {name: "Cloners"},
inwardIssue: {key: newEpic.key},
outwardIssue: {key: issue.key}
])
.asString()
I am seeing the following error:
2018-10-23 17:56:25.396 WARN - POST request to rest/api/3/issueLink returned an error code: status: 400 - Bad Request body: {"errorMessages":["Unrecognized field \"delegate\" (Class com.atlassian.jira.issue.fields.rest.json.beans.IssueLinkTypeJsonBean), not marked as ignorable\n at [Source: com.atlassian.plugin.connect.plugin.auth.scope.InputConsumingHttpServletRequest$1@1ab82f46; line: 1, column: 22] (through reference chain: com.atlassian.jira.issue.fields.rest.json.beans.LinkIssueRequestJsonBean[\"type\"]->com.atlassian.jira.issue.fields.rest.json.beans.IssueLinkTypeJsonBean[\"delegate\"])"]}
I don't understand this error as "Delegate" is not even a field that exists within our JIRA Instance. Is there any better way to do Issue Link creation? Have tried a few ways now...
Hi Andrew,
Thank you for your question.
I have created an example Script Console script which can be ran from the Script Console and shows how to link two issues together.
You can view the example script here and can use this example code as a reference to see the syntax that must be specified to link issues together so that you can use this approach inside of your script.
If this response has answered your question can you please mark it as accepted so that other users searching for a similar question can see that this is a correct answer.
Regards,
Kristian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.