GET api/AccountSummaryDebtor/GetAccountAllocationSummaryByAccountID?accountID={accountID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountAllocationSummaryPanelVM| Name | Description | Type | Additional information |
|---|---|---|---|
| LUPTotalCost | decimal number |
None. |
|
| LUPTotalInterest | decimal number |
None. |
|
| LUPTotalPayment | decimal number |
None. |
|
| LUPTotalAdjustment | decimal number |
None. |
|
| LUPAccountBalance | decimal number |
None. |
|
| CurrentDue | decimal number |
None. |
|
| OtherDue | decimal number |
None. |
|
| LUPTotalPrincipals | decimal number |
None. |
|
| LUPBalancePrincipal | decimal number |
None. |
|
| LUPBalanceCost | decimal number |
None. |
|
| LUPBalanceInterest | decimal number |
None. |
|
| LUPLastPaymentDate | date |
None. |
|
| LUPSanctionDue | decimal number |
None. |
|
| CurrencyCharacter | string |
None. |
|
| CurrencyCode | string |
None. |
|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"LUPTotalCost": 1.0,
"LUPTotalInterest": 1.0,
"LUPTotalPayment": 1.0,
"LUPTotalAdjustment": 1.0,
"LUPAccountBalance": 1.0,
"CurrentDue": 1.0,
"OtherDue": 1.0,
"LUPTotalPrincipals": 1.0,
"LUPBalancePrincipal": 1.0,
"LUPBalanceCost": 1.0,
"LUPBalanceInterest": 1.0,
"LUPLastPaymentDate": "2026-01-15T08:43:07.6930388+00:00",
"LUPSanctionDue": 1.0,
"CurrencyCharacter": "sample string 1",
"CurrencyCode": "sample string 2",
"Response": null
}
application/xml, text/xml
Sample:
<AccountAllocationSummaryPanelVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Account.AccountSummary"> <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" /> <CurrencyCharacter>sample string 1</CurrencyCharacter> <CurrencyCode>sample string 2</CurrencyCode> <CurrentDue>1</CurrentDue> <LUPAccountBalance>1</LUPAccountBalance> <LUPBalanceCost>1</LUPBalanceCost> <LUPBalanceInterest>1</LUPBalanceInterest> <LUPBalancePrincipal>1</LUPBalancePrincipal> <LUPLastPaymentDate>2026-01-15T08:43:07.6930388+00:00</LUPLastPaymentDate> <LUPSanctionDue>1</LUPSanctionDue> <LUPTotalAdjustment>1</LUPTotalAdjustment> <LUPTotalCost>1</LUPTotalCost> <LUPTotalInterest>1</LUPTotalInterest> <LUPTotalPayment>1</LUPTotalPayment> <LUPTotalPrincipals>1</LUPTotalPrincipals> <OtherDue>1</OtherDue> </AccountAllocationSummaryPanelVM>