Reconciliation
Update matching rule
Update a reconciliation matching rule with the Python SDK.
PUT
Update matching rule
Use
blnk.reconciliation.update_matching_rule to update a matching rule.
Call the method
blnk.reconciliation.update_matching_rule
| Field | Type | Description |
|---|---|---|
ruleId | str | ID of the matching rule to update. |
name | str | Updated name for the rule. |
description | str | Updated description of what the rule does. |
criteria | list[dict] | Full replacement array of match criteria. |
criteria[].field | str | Field to match: amount, currency, reference, description, or date. |
criteria[].operator | str | How to compare the field: equals or contains. |
criteria[].allowable_drift | number | Optional tolerance for amount (percentage) or date (seconds). |
Verify the changes
Read
response.data to confirm the updated criteria and description. The rule ID stays the same.Related docs
How reconciliation works
Criteria, operators, and drift behavior.
Update matching rule
HTTP request and response schema.