GET api/reconciliation/getcurrent?id={id}
Get the current reconciliation
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The account ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ReconciliationDataContractName | Description | Type | Additional information |
---|---|---|---|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
OpeningBalance | decimal number |
None. |
|
ClosingBalance | decimal number |
None. |
|
BankAccountId | integer |
None. |
|
IsCompleted | boolean |
None. |
|
IsLocked | boolean |
None. |
|
CreatedBy | CreatedBySimpleDataContract |
None. |
|
ReconciliationItemIds | Collection of integer |
None. |
|
SystemStatus | SystemStatuses |
None. |
|
Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "StartDate": "2023-10-02T01:34:30.6697831Z", "EndDate": "2023-10-02T01:34:30.6697831Z", "OpeningBalance": 3.0, "ClosingBalance": 4.0, "BankAccountId": 5, "IsCompleted": true, "IsLocked": true, "CreatedBy": { "Initials": "sample string 1", "Title": "sample string 2", "FirstName": "sample string 3", "LastName": "sample string 4", "Id": 5 }, "ReconciliationItemIds": [ 1, 2 ], "SystemStatus": 0, "Id": 8 }