Reconciliation
Update matching rule
Update a reconciliation matching rule with the TypeScript SDK.
PUT
Update matching rule
Use
blnk.Reconciliation.updateMatchingRule to update a matching rule.
blnk.Reconciliation.updateMatchingRule
| Field | Description |
|---|---|
ruleId | ID of the matching rule to update. |
name | Updated name for the rule. |
description | Updated description of what the rule does. |
criteria | Full replacement array of match criteria. |
criteria[].field | Field to match: amount, currency, reference, description, or date. |
criteria[].operator | How to compare the field: equals or contains. |
criteria[].allowable_drift | Optional tolerance for amount (percentage) or date (seconds). |
Response shape
200 OK
| Field | Description |
|---|---|
rule_id | Unchanged ID of the rule. |
name | Updated rule name. |
criteria | The updated match criteria stored for the rule. |
updated_at | When the rule was last updated. |
Related docs
How reconciliation works
Criteria, operators, and drift behavior.
Update matching rule
HTTP request and response schema.