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.
Please post here your JSON.
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.