Get Match Id
entityresolution_get_match_id | R Documentation |
Returns the corresponding Match ID of a customer record if the record has been processed in a rule-based matching workflow or ML matching workflow¶
Description¶
Returns the corresponding Match ID of a customer record if the record has been processed in a rule-based matching workflow or ML matching workflow.
You can call this API as a dry run of an incremental load on the rule-based matching workflow.
Usage¶
entityresolution_get_match_id(workflowName, record, applyNormalization)
Arguments¶
workflowName |
[required] The name of the workflow. |
record |
[required] The record to fetch the Match ID for. |
applyNormalization |
Normalizes the attributes defined in the schema in the input
data. For example, if an attribute has an |
Value¶
A list with the following syntax:
list(
matchId = "string",
matchRule = "string"
)
Request syntax¶
svc$get_match_id(
workflowName = "string",
record = list(
"string"
),
applyNormalization = TRUE|FALSE
)