GET api/account/{id}/deposits
Get Deposits processed for an Account
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReceiptDepositDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| StartingBalance | decimal number |
None. |
|
| EndingBalance | decimal number |
None. |
|
| Amount | decimal number |
None. |
|
| SourceAccountId | integer |
None. |
|
| RecipientAccountId | integer |
None. |
|
| DateTime | date |
None. |
|
| ReceiptIds | Collection of integer |
None. |
|
| CreatedById | integer |
None. |
|
| CashReceipted | decimal number |
None. |
|
| ChequesReceipted | decimal number |
None. |
|
| Status | ReceiptStatus |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StartingBalance": 1.0,
"EndingBalance": -1.0,
"Amount": 2.0,
"SourceAccountId": 3,
"RecipientAccountId": 4,
"DateTime": "2025-11-18T14:12:58.9567978Z",
"ReceiptIds": [
1,
2
],
"CreatedById": 6,
"CashReceipted": 7.0,
"ChequesReceipted": 8.0,
"Status": 0,
"Id": 9
},
{
"StartingBalance": 1.0,
"EndingBalance": -1.0,
"Amount": 2.0,
"SourceAccountId": 3,
"RecipientAccountId": 4,
"DateTime": "2025-11-18T14:12:58.9567978Z",
"ReceiptIds": [
1,
2
],
"CreatedById": 6,
"CashReceipted": 7.0,
"ChequesReceipted": 8.0,
"Status": 0,
"Id": 9
}
]