Skip to end of banner
Go to start of banner

deleteWebLinkById

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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);
	}
}

See also

  • No labels