deleteIssueLink method
Deletes an issue link.
This operation can be accessed anonymously.
Permissions required:
- Browse project project permission for all the projects containing the issues in the link.
- Link issues project permission for at least one of the projects containing issues in the link.
- If issue-level security is configured, permission to view both of the issues.
Implementation
Future<void> deleteIssueLink(String linkId) async {
await _client.send(
'delete',
'rest/api/3/issueLink/{linkId}',
pathParameters: {
'linkId': linkId,
},
);
}