POST api/reconciliation/start

Start a new reconciliation

Request Information

URI Parameters

None.

Body Parameters

Dezrez.Core.DataContracts.Accounts.Financial.Command.Reconciliation.GetAccountReconciliationDataContract
NameDescriptionTypeAdditional 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": "2024-04-25T22:51:52.2101573Z",
  "OpeningBalance": 5.0,
  "ClosingBalance": 6.0,
  "ReconciliationId": 7,
  "Id": 8
}

Response Information

Resource Description

Dezrez.Core.DataContracts.Accounts.Financial.Query.Reconciliation.ReconciliationDataContract
NameDescriptionTypeAdditional 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

Dezrez.Core.DataContracts.Accounts.Financial.Query.Accounts.CreatedBySimpleDataContract

None.

ReconciliationItemIds

Collection of integer

None.

SystemStatus

Dezrez.Rezi.Domain.Constants.Enums.SystemStatuses

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "StartDate": "2024-04-25T22:51:52.2101573Z",
  "EndDate": "2024-04-25T22:51:52.2101573Z",
  "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
}