Reconciliation
Get reconciliation
Get reconciliation status and match counts with the Python 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 | str | 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 | str | ID of the reconciliation run. |
status | str | 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 | str | When the reconciliation started. |
Related docs
How reconciliation works
Batch and instant reconciliation workflows.
View reconciliation details
HTTP request and response schema.