POST api/reconciliation/start
Start a new reconciliation
Request Information
URI Parameters
None.
Body Parameters
GetAccountReconciliationDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| ExcludeInItems | boolean |
None. |
|
| ExcludeOutItems | boolean |
None. |
|
| ExcludeBatchItems | boolean |
None. |
|
| EndDate | date |
None. |
|
| OpeningBalance | decimal number |
None. |
|
| ClosingBalance | decimal number |
None. |
|
| ReconciliationId | integer |
None. |
|
| Id | integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"ExcludeInItems": true,
"ExcludeOutItems": true,
"ExcludeBatchItems": true,
"EndDate": "2025-11-17T21:29:21.8223505Z",
"OpeningBalance": 5.0,
"ClosingBalance": 6.0,
"ReconciliationId": 7,
"Id": 8
}
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-17T21:29:21.8223505Z",
"EndDate": "2025-11-17T21:29:21.8223505Z",
"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
}