Skip to content

Get Match Id

entityresolution_get_match_id R Documentation

Returns the corresponding Match ID of a customer record if the record has been processed

Description

Returns the corresponding Match ID of a customer record if the record has been processed.

Usage

entityresolution_get_match_id(applyNormalization, record, workflowName)

Arguments

applyNormalization

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.

record

[required] The record to fetch the Match ID for.

workflowName

[required] The name of the workflow.

Value

A list with the following syntax:

list(
  matchId = "string",
  matchRule = "string"
)

Request syntax

svc$get_match_id(
  applyNormalization = TRUE|FALSE,
  record = list(
    "string"
  ),
  workflowName = "string"
)