GET api/account/{id}/receipts?depositId={depositId}
Get Receipts for account
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| depositId | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ReceiptDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| DateTime | date |
None. |
|
| Amount | decimal number |
None. |
|
| PaymentType | PaymentType |
None. |
|
| BankAccountId | integer |
None. |
|
| BankAccountName | string |
None. |
|
| AccountId | integer |
None. |
|
| AccountName | string |
None. |
|
| PropertyAccountId | integer |
None. |
|
| IsDeposited | boolean |
None. |
|
| DepositId | integer |
None. |
|
| Description | string |
None. |
|
| OriginalAmount | decimal number |
None. |
|
| LedgerEntryId | integer |
None. |
|
| IsReversed | boolean |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DateTime": "2025-11-18T14:12:58.1493164Z",
"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,
"Id": 12
},
{
"DateTime": "2025-11-18T14:12:58.1493164Z",
"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,
"Id": 12
}
]