getItemHyperlinks

Retrieves a hyperlink that can be used to access an item using the Helix ALM native or web clients. A SOAP error envelope is returned if the operation fails.

Parameters

Parameter Type Description
cookie long Session cookie returned by projectLogon.
itemType string Table name the item belongs to. Valid values: Defect, Test Case, Test Run, Requirement, Requirement Document, User, Customer, Task, Test Config, Folder, and Report. Use getTableList to retrieve a list of available tables.
itemID long Unique item record ID.

Return value

Value Type
hyperlinks CItemHyperlinkContainer

Example

CDefect def = ttsdk.getDefect(cookie, 0, "Defect summary", false);

 

CItemHyperlinkContainer itemHyperlinks = ttsdk.getItemHyperlinks(cookie, "Defect", def.recordid);