POST api/reconciliation/items
Get all items eligible for 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-07T13:15:25.1054287Z",
"OpeningBalance": 5.0,
"ClosingBalance": 6.0,
"ReconciliationId": 7,
"Id": 8
}
Response Information
Resource Description
Collection of ReconciliationItemDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| DateTime | date |
None. |
|
| TransactionType | string |
None. |
|
| LedgerId | integer |
None. |
|
| Amount | decimal number |
None. |
|
| IsIn | boolean |
None. |
|
| PaymentMethod | string |
None. |
|
| ClearedStatus | string |
None. |
|
| CreatedBy | integer |
None. |
|
| Description | string |
None. |
|
| BatchPaymentId | integer |
None. |
|
| Adjustments | Collection of AdjustmentItemDataContract |
None. |
|
| OriginalTotal | decimal number |
None. |
|
| FromTo | string |
None. |
|
| FromToGroupId | integer |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DateTime": "2025-11-07T13:15:25.1054287Z",
"TransactionType": "sample string 2",
"LedgerId": 3,
"Amount": 4.0,
"IsIn": true,
"PaymentMethod": "sample string 6",
"ClearedStatus": "sample string 7",
"CreatedBy": 1,
"Description": "sample string 8",
"BatchPaymentId": 9,
"Adjustments": [
{
"Amount": 1.0,
"Description": "sample string 2",
"IsPositive": true,
"AdjustmentType": 0
},
{
"Amount": 1.0,
"Description": "sample string 2",
"IsPositive": true,
"AdjustmentType": 0
}
],
"OriginalTotal": 10.0,
"FromTo": "sample string 11",
"FromToGroupId": 12,
"Id": 13
},
{
"DateTime": "2025-11-07T13:15:25.1054287Z",
"TransactionType": "sample string 2",
"LedgerId": 3,
"Amount": 4.0,
"IsIn": true,
"PaymentMethod": "sample string 6",
"ClearedStatus": "sample string 7",
"CreatedBy": 1,
"Description": "sample string 8",
"BatchPaymentId": 9,
"Adjustments": [
{
"Amount": 1.0,
"Description": "sample string 2",
"IsPositive": true,
"AdjustmentType": 0
},
{
"Amount": 1.0,
"Description": "sample string 2",
"IsPositive": true,
"AdjustmentType": 0
}
],
"OriginalTotal": 10.0,
"FromTo": "sample string 11",
"FromToGroupId": 12,
"Id": 13
}
]