Skip to end of banner
Go to start of banner

getWebLinkById

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 3 Next »

Description

Retrieves information about a web link.

Parameters

Return Type

String []

Array containing information about a web link, in the following order:

Index in arrayInformation
0

Link Title

1URL
2Summary
3Relationship
4Icon URL
5Icon Title
6Status Icon Title
7Status Icon Link
8Status Icon URL

Example

number [] ids = getWebLinksForIssue(key);

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

See also

  • No labels