Gets the list of associated documents of the specified document.

Syntax

Visual Basic (declaration)
Public Function AssociatedDocuments( _ 
ByVal AuthenticationTicket as String, _ ByVal DocumentPath as String) as XmlNode

C# (declaration)
public XmlNode AssociatedDocuments( 
string AuthenticationTicket, string DocumentPath)

Parameters

AuthenticationTicket
    string inforouter ticket
DocumentPath
    string The path of the document that the associations to be listed.

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the associated document list returned successfully.
if success attribute is "false", the error attribute indicates the encountered error.

The associated documents are listed in the childnodes of the root node like following

<response success="true" error="">
	<AssociatedDocuments>
		<AssociatedDocument IsReverseAssociation="FALSE" AssociationTypeID="0" AssociationTypeName="Related" Path="/Accounting/General Ledger/Annual operating budget 2007.xls" Size="88576" DateModified="2007-08-08 07:53:42" /> 
		<AssociatedDocument IsReverseAssociation="FALSE" AssociationTypeID="0" AssociationTypeName="Related" Path="/Accounting/General Ledger/Asset Allocation Pie Chart 2006.xls" Size="227328" DateModified="2008-01-02 09:42:10" /> 
		<AssociatedDocument IsReverseAssociation="FALSE" AssociationTypeID="0" AssociationTypeName="Related" Path="/Accounting/General Ledger/Asset Allocation Pie Chart 2007.xls" Size="231936" DateModified="2007-08-08 07:49:33" /> 
	</AssociatedDocuments>
</response>