Reconciliation
Get reconciliation
Get reconciliation status and match counts with the TypeScript SDK.
GET
Get reconciliation
Use
blnk.Reconciliation.get to fetch the status and match counts for a reconciliation run.
Call the method
blnk.Reconciliation.get
| Field | Type | Description |
|---|---|---|
reconciliationId | string | ID of the reconciliation run to retrieve. |
Use the reconciliation details
Read
response.data for status, matched and unmatched counts, and creation time. Poll this endpoint after starting a batch or instant run until status is completed.Response
200 OK
| Field | Type | Description |
|---|---|---|
reconciliation_id | string | ID of the reconciliation run. |
status | string | Current status of the run, for example completed. |
matched_transactions | number | Number of records that matched. |
unmatched_transactions | number | Number of records that did not match. |
created_at | string | When the reconciliation started. |
Related docs
How reconciliation works
Batch and instant reconciliation workflows.
View reconciliation details
HTTP request and response schema.