Values.GetMatchIdInputSourceReturns the corresponding Match ID of a customer record if the record has been processed in a rule-based matching workflow. You can call this API as a dry run of an incremental load on the rule-based matching workflow.
type nonrec t = {workflowName : EntityName.t;The name of the workflow.
*)record : RecordAttributeMap.t;The record to fetch the Match ID for.
*)applyNormalization : Boolean.t option;Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an AttributeType of PHONE_NUMBER, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.
*)}val make :
?applyNormalization:??? ->
workflowName:EntityName.t ->
record:RecordAttributeMap.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Map of
([> `String of RecordAttributeMapKeyString.t ]
* [> `String of RecordAttributeMapValueString.t ])
list
| `String of EntityName.t ])
list ]