GET api/account/{id}/receipts?depositId={depositId}
Get Receipts for account Processes this account API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the requested resource. |
integer |
Required |
| depositId |
The unique identifier of the deposit resource. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
Collection of ReceiptDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| DateTime |
The date time, expressed as a date and time. |
date |
None. |
| Amount |
The amount value. |
decimal number |
None. |
| PaymentType |
The payment type classification. |
PaymentType |
None. |
| BankAccountId |
The unique identifier of the related bank account resource. |
integer |
None. |
| BankAccountName |
The bank account name value. |
string |
None. |
| AccountId |
The unique identifier of the related account resource. |
integer |
None. |
| AccountName |
The account name value. |
string |
None. |
| PropertyAccountId |
The unique identifier of the related property account resource. |
integer |
None. |
| IsDeposited |
Indicates whether this item is deposited. |
boolean |
None. |
| DepositId |
The unique identifier of the related deposit resource. |
integer |
None. |
| Description |
The description value. |
string |
None. |
| OriginalAmount |
The original amount value. |
decimal number |
None. |
| LedgerEntryId |
The unique identifier of the related ledger entry resource. |
integer |
None. |
| IsReversed |
Indicates whether this item is reversed. |
boolean |
None. |
| RetentionAmount |
The retention amount value. |
decimal number |
None. |
| Regarding |
The regarding value. |
string |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
[
{
"DateTime": "2026-07-23T08:24:09.0198077Z",
"Amount": 2.0,
"PaymentType": 0,
"BankAccountId": 3,
"BankAccountName": "sample string 4",
"AccountId": 5,
"AccountName": "sample string 6",
"PropertyAccountId": 1,
"IsDeposited": true,
"DepositId": 1,
"Description": "sample string 8",
"OriginalAmount": 9.0,
"LedgerEntryId": 10,
"IsReversed": true,
"RetentionAmount": 12.0,
"Regarding": "sample string 13",
"Id": 14
},
{
"DateTime": "2026-07-23T08:24:09.0198077Z",
"Amount": 2.0,
"PaymentType": 0,
"BankAccountId": 3,
"BankAccountName": "sample string 4",
"AccountId": 5,
"AccountName": "sample string 6",
"PropertyAccountId": 1,
"IsDeposited": true,
"DepositId": 1,
"Description": "sample string 8",
"OriginalAmount": 9.0,
"LedgerEntryId": 10,
"IsReversed": true,
"RetentionAmount": 12.0,
"Regarding": "sample string 13",
"Id": 14
}
]