Update contact fuzzy-merge settings
Partially updates the fuzzy-merge configuration: numeric thresholds (0-100% or absolute), candidate limit (1-200), custom field rules (field path / weight / matchMode), lookup-trigger and instant-merge field lists, and per-field conflict resolution rules. All changes are validated against the merged configuration.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
1 <= x <= 2000 <= x <= 1000 <= x <= 100Optional absolute threshold; converted to thresholdPercent against the max possible score.
x >= 0Optional absolute review threshold; converted to reviewThresholdPercent against the max possible score.
x >= 0Response
Contact fuzzy merge settings updated
true {
"candidateLimit": 50,
"thresholdPercent": 90,
"reviewThresholdPercent": 70,
"customFields": [
{
"field": "address.streetAddress",
"weight": 25,
"matchMode": "fuzzy_string"
}
],
"lookupTriggerFields": ["email", "phoneNumber"],
"instantMergeFields": ["email"],
"conflictResolutionRules": { "email": "prefer_newer" }
}