Creates an issue link between two issues.
Forge and OAuth2 apps cannot access this REST resource.
All information about the link relationship. Which issues to link, which issue link type to use and an optional comment that will be added to the first issue.
CommentJsonBean
IssueRefJsonBean
IssueRefJsonBean
IssueLinkTypeJsonBean
Returned if the issue link was created successfully.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/issueLink' \
--user 'email@example.com:<api_token>' \
--header 'Content-Type: application/json'
Returns an issue link with the specified id.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturned if the request was successful.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/issueLink/{linkId}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Deletes an issue link with the specified id.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturned if it successfully deleted the issue link.
1
2
3
curl --request DELETE \
--url 'http://{baseurl}/rest/api/2/issueLink/{linkId}' \
--user 'email@example.com:<api_token>'
Rate this page: