POST api/reports/CustomerAccountBalance
Request Information
URI Parameters
None.
Body Parameters
CustomerAccountBalanceRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DbId | integer |
None. |
|
| BalanceDate | date |
None. |
|
| Credit | boolean |
None. |
|
| Debit | boolean |
None. |
|
| ExceptZero | boolean |
None. |
|
| Language | ReportLanguageEnum |
None. |
|
| Format | ReportFormatEnum |
None. |
Request Formats
application/json, text/json
Sample:
{
"DbId": 1,
"BalanceDate": "2026-06-18T07:04:16.5549339+02:00",
"Credit": true,
"Debit": true,
"ExceptZero": true,
"Language": 1,
"Format": 1
}
application/xml, text/xml
Sample:
<CustomerAccountBalanceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hano.Report.Model"> <Format>PDF</Format> <Language>nbNO</Language> <BalanceDate>2026-06-18T07:04:16.5549339+02:00</BalanceDate> <Credit>true</Credit> <DbId>1</DbId> <Debit>true</Debit> <ExceptZero>true</ExceptZero> </CustomerAccountBalanceRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |