GET api/{database}/AccountPeriodTotalInfoList/ByPeriod/{fiscalYear}/{startPeriod}/{endPeriod}
Gets a list of AccountPeriodTotalInfo that matches the specified criteria
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| fiscalYear | The fiscalYear. |
Define this parameter in the request URI. |
| startPeriod | The startPeriod. |
Define this parameter in the request URI. |
| endPeriod | The endPeriod. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"accountId": "sample string 1",
"budgetAmount": 1.0,
"creditAmount": 2.0,
"debitAmount": 3.0,
"fiscalYear": 4,
"periodId": 5
},
{
"accountId": "sample string 1",
"budgetAmount": 1.0,
"creditAmount": 2.0,
"debitAmount": 3.0,
"fiscalYear": 4,
"periodId": 5
},
{
"accountId": "sample string 1",
"budgetAmount": 1.0,
"creditAmount": 2.0,
"debitAmount": 3.0,
"fiscalYear": 4,
"periodId": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfAccountPeriodTotalInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Financial.Info">
<AccountPeriodTotalInfo>
<AccountId>sample string 1</AccountId>
<BudgetAmount>1</BudgetAmount>
<CreditAmount>2</CreditAmount>
<DebitAmount>3</DebitAmount>
<FiscalYear>4</FiscalYear>
<PeriodId>5</PeriodId>
</AccountPeriodTotalInfo>
<AccountPeriodTotalInfo>
<AccountId>sample string 1</AccountId>
<BudgetAmount>1</BudgetAmount>
<CreditAmount>2</CreditAmount>
<DebitAmount>3</DebitAmount>
<FiscalYear>4</FiscalYear>
<PeriodId>5</PeriodId>
</AccountPeriodTotalInfo>
<AccountPeriodTotalInfo>
<AccountId>sample string 1</AccountId>
<BudgetAmount>1</BudgetAmount>
<CreditAmount>2</CreditAmount>
<DebitAmount>3</DebitAmount>
<FiscalYear>4</FiscalYear>
<PeriodId>5</PeriodId>
</AccountPeriodTotalInfo>
</ArrayOfAccountPeriodTotalInfo>