GET api/reconciliation/{id}
Get a reconciliation by id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ReconciliationDataContract| Name | 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. |
|
| UnclearedItemIds | Collection of integer |
None. |
|
| SystemStatus | SystemStatuses |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"StartDate": "2025-11-18T14:10:06.0321619Z",
"EndDate": "2025-11-18T14:10:06.0321619Z",
"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
],
"UnclearedItemIds": [
1,
2
],
"SystemStatus": 0,
"Id": 8
}