---
title: "deleteWebLinkById"
canonical: "https://support.appfire.com/space/PSJ/15487450/deleteWebLinkById"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | deleteWebLinkById(webLinkId) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Removes a web link.

Removes a web link.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| webLinkId | String | Yes | Id of a web link. |

## Return Type

**None**

The returned value has no meaning.

## Example

```
number&nbsp;[] ids = getWebLinksForIssue(key);

for(number wlid in ids){
	string&nbsp;[] props = getWebLinkById(wlid);
	if(props[0] == theOtherKey) {
		deleteWebLinkById(wlid);
	}
}
```

## See also

> Macro (contentbylabel)