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.
Can anyone tell whats the REST api call to JIRA issue link name "is executed by" ?
I am trying to pass name "is executed by" through POST /rest/api/2/issueLink, However this name is not being accepted, its throws below error.
Error:
Community moderators have prevented the ability to post new answers.
I am not sure why the name does not work for you. You can try an id:
"type": { "id": 123 },
You can get the id by checking Issue Linking screen under JIRA administration and hoovering over Edit links:
image2017-3-24 11:3:26.png
This is to create "is executes" relation which works. However i need "is executed by" relation, I cannot find the "name" for it. @Volodymyr Krupach
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{ "type": { "name": "Executes" }, "inwardIssue": { "key": "[entry.jiraIssue.key]" }, "outwardIssue": { "key": "[entry.issueReturnTextOracle.label]" } }
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.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.