getWebLinksForIssue

Description

Gets the ids of all the web links on an issue.

Parameters

Return Type

Number []

Array containing the IDs of all web links on an issue.

Example

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

See also