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
StatementItemOverviewDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| OpeningBalance | decimal number |
None. |
|
| ClosingBalance | decimal number |
None. |
|
| TotalPayoutAmount | decimal number |
None. |
|
| PropertyRetentionAmount | decimal number |
None. |
|
| Items | Collection of 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": "2025-11-18T14:08:26.852061Z",
"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": "2025-11-18T14:08:26.852061Z",
"Description": "sample string 4",
"TransactionType": {
"Name": "sample string 1",
"SystemName": "sample string 2",
"Id": 1
},
"Id": 5
}
]
}