GLAccountTransactionsFiscal(sessionID, administrationID, GLAccountCode, StartDate, EndDate)

Returns the GL account transactions of a specific GL account in an administration, in a given date range, including all fiscal correcting entries.


Parameters


sessionID

Returns a session ID that is obtained from the Authenticate(accessKey) method.


administrationID

The identifier of the administration. For a description where you can find the administrationID see article Administration ID. 


GLAccountCode

Code of a GL account (leave blank for all GL 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>