GET api/reconciliation/getcurrent?id={id}

Gets the latest active reconciliation for a system bank account. No value is returned when the account has not been reconciled. The request is rejected when the active reconciliation is locked by another user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The bank account identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The current reconciliation when one exists; otherwise no reconciliation.

ReconciliationDataContract
NameDescriptionTypeAdditional information
StartDate

The start date, expressed as a date and time.

date

None.

EndDate

The end date, expressed as a date and time.

date

None.

OpeningBalance

The opening balance value.

decimal number

None.

ClosingBalance

The closing balance value.

decimal number

None.

BankAccountId

The unique identifier of the related bank account resource.

integer

None.

IsCompleted

Indicates whether this item is completed.

boolean

None.

IsLocked

Indicates whether this item is locked.

boolean

None.

CreatedBy

The created by value.

CreatedBySimpleDataContract

None.

ReconciliationItemIds

The unique identifiers of the related reconciliation item resources.

Collection of integer

None.

UnclearedItemIds

The unique identifiers of the related uncleared item resources.

Collection of integer

None.

SystemStatus

The system status classification.

SystemStatuses

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "StartDate": "2026-07-23T08:16:51.2085083Z",
  "EndDate": "2026-07-23T08:16:51.2085083Z",
  "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
}