Skip to content

AddLink

Adds a link to the specified case, marking it as related.

1
myCase.AddLink(caseOrId: ( string | Case )):Case

Adds a link to the specified case with the specified type.

1
myCase.AddLink(caseOrId: ( string | Case ), linkType: ( `"Related"` | `"Child"` | `"Duplicate"` )):Case

Parameters

( string | Case ) caseOrId
    The ID or instance of the case to link.

( "Related" | "Child" | "Duplicate" ) linkType
    The type of relation: "Related", "Child", or "Duplicate".

Returns

The current Case instance. The current Case instance.

See Also