Function: deleteRemoteIssueLinkById()
ts
function deleteRemoteIssueLinkById(client, parameters): Promise<void>;Defined in: src/cloud/api/issueRemoteLinks.ts:184
Deletes a remote issue link from an issue.
This operation requires issue linking to be active.
This operation can be accessed anonymously.
Permissions required:
- Browse projects, Edit issues, and Link issues project permission for the project that the issue is in.
- If issue-level security is configured, issue-level security permission to view the issue.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { issueIdOrKey: string; linkId: string; } | - |
parameters.issueIdOrKey | string | The ID or key of the issue. |
parameters.linkId | string | The ID of a remote issue link. |
Returns
Promise<void>