Accelerate the Value of Data

Find Match Token Intersections

This API allows you to find match token intersections for the specified strings.

You must have the MDM.Config.BusinessModel resource assigned with the READ privilege.

Request

POST /reltio/tools/matching/matchTokenIntersections

Body

{
  "fuzzy": true,
  "first": "string 1",
  "second": "string 2",
  "matchTokenClass": {
    "parameters": [
		{
		  "parameter": "useStemmer",
		  "value": "true"
		},
		{
		  "parameter": "useSoundex",
		  "value": "true"
		},
		{
		  "parameter": "threshold",
		  "value": "80%"
		}
	],
	"class": "com.reltio.match.token.DistinctWordsMatchToken"
  }
}

Response

{
  "first": "string 1",
  "second": "string 2"
  "fuzzy": true,
  "intersections": [
    "token x",
	"token y"
  ]
}