GLAccountTransactions(sessionID, administrationID, GLAccountCode, StartDate, EndDate)
Provides the transactions of a specific ledger account in a specific administration, of a given date range.
Parameters
sessionID
The session ID as given in the method Authenticate (accessKey).
administrationID
The identifier of the administration. For a description on where to find the administrationID, please refer AdministrationID.
GLAccountCode
Code of the ledger account (leave blank for all accounts).
StartDate
Start date of the transactions
EndDate
End date of the transactions
Response XML scheme
<xs:element name="GLAccountTransactions">
<xs:complexType>
<xs:sequence>
<xs:element name="GLAccountTransaction" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Date" type="xs:date" />
<xs:element name="Description" type="xs:string" />
<xs:element name="Amount" type="xs:decimal" />
<xs:element name="Contact" type="xs:string" />
<xs:element name="Project">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="Code"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="GLAccountCode" type="xs:string" />
</xs:sequence>
<xs:attribute name="ID" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>