GET api/receipt/statement/overview/{id}
Gets the payment item details as a
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Payment item id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Payment item details
Dezrez.Core.DataContracts.Accounts.Financial.Query.Statement.StatementItemOverviewDataContractName | Description | Type | Additional information |
---|---|---|---|
OpeningBalance | decimal number |
None. |
|
ClosingBalance | decimal number |
None. |
|
TotalPayoutAmount | decimal number |
None. |
|
PropertyRetentionAmount | decimal number |
None. |
|
Items | Collection of Dezrez.Core.DataContracts.Accounts.Invoices.Query.InvoicePaymentLineDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{ "OpeningBalance": 1.0, "ClosingBalance": 2.0, "TotalPayoutAmount": 3.0, "PropertyRetentionAmount": 1.0, "Items": [ { "Amount": 1.0, "DrCr": "sample string 2", "DateTime": "2024-11-21T09:47:32.2247898Z", "Description": "sample string 4", "TransactionType": { "Name": "sample string 1", "SystemName": "sample string 2", "Id": 1 }, "Id": 5 }, { "Amount": 1.0, "DrCr": "sample string 2", "DateTime": "2024-11-21T09:47:32.2247898Z", "Description": "sample string 4", "TransactionType": { "Name": "sample string 1", "SystemName": "sample string 2", "Id": 1 }, "Id": 5 } ] }