frequently asked questions

All your questions in one place.

AnalyticAccountBalance

This method returns the balance at a given date for a given analytical account number.

BODY - RAW

{
       "Method": "AnalyticAccountBalance",
       "Parameters": [
             <cAnalyticalAccount>
             [, <dDateEnd>]
             [, <dDateStart>]
       ]
}
ParametersDescription
cAnalyticalAccountAnalytical account number.
dDateEndAccounting entries up to this date are included. The parameter is not mandatory. If it is not specified, all the entries are included.
dDateStartAccounting entries starting form this date are included. The parameter is not mandatory. If it is not specified, all the entries are included.

EXAMPLE

*/ Return the current balance for the Analytical Account 1000.

{
       "Method": "AnalyticAccountBalance",
       "Parameters": [
             "1000"
       ]
}

*/ Return the balance at the 31.03.2017 for the Analytical Account 1000.

{
       "Method": "AnalyticAccountBalance",
       "Parameters": [
             "1000",
             "31.03.2017"
       ]
}

*/ Return the balance between the 01.03.2017 and the 31.03.2017 for the Analytical Account 1000.

{
       "Method": "AnalyticAccountBalance",
       "Parameters": [
             "1000",
             "31.03.2017",
             "01.03.2017"
       ]
}

Did you find this article useful?

0 out of 0 found this helpful