deleteWebLinkById
Description
Removes a web link.
Parameters
Return Type
None
The returned value has no meaning.
Example
number [] ids = getWebLinksForIssue(key);
for(number wlid in ids){
string [] props = getWebLinkById(wlid);
if(props[0] == theOtherKey) {
deleteWebLinkById(wlid);
}
}