GET api/account/{id}/deposits
Get Deposits processed for an 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 |
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
Collection of ReceiptDepositDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| StartingBalance |
The starting balance value. |
decimal number |
None. |
| EndingBalance |
The ending balance value. |
decimal number |
None. |
| Amount |
The amount value. |
decimal number |
None. |
| SourceAccountId |
The unique identifier of the related source account resource. |
integer |
None. |
| RecipientAccountId |
The unique identifier of the related recipient account resource. |
integer |
None. |
| DateTime |
The date time, expressed as a date and time. |
date |
None. |
| ReceiptIds |
The unique identifiers of the related receipt resources. |
Collection of integer |
None. |
| CreatedById |
The unique identifier of the related created by resource. |
integer |
None. |
| CashReceipted |
The cash receipted value. |
decimal number |
None. |
| ChequesReceipted |
The cheques receipted value. |
decimal number |
None. |
| Status |
The status classification. |
ReceiptStatus |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
[
{
"StartingBalance": 1.0,
"EndingBalance": -1.0,
"Amount": 2.0,
"SourceAccountId": 3,
"RecipientAccountId": 4,
"DateTime": "2026-07-23T08:23:07.2124899Z",
"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": "2026-07-23T08:23:07.2124899Z",
"ReceiptIds": [
1,
2
],
"CreatedById": 6,
"CashReceipted": 7.0,
"ChequesReceipted": 8.0,
"Status": 0,
"Id": 9
}
]