Multidomain MDM
- Multidomain MDM 10.3 HotFix 2
- All Products
Parameter
| Description
|
---|---|
action
| Required. Returns the matching records for the specified business entity. Set to
match , and use the parameter with the
fuzzyFilter parameter.
For example, use the following query to search for a person with the first name STEVE:
|
fuzzyFilter
| Required. Specifies a comma-separated list of field name and field value pairs that you want to use to query for records of a specific business entity type.
For example, use the following query to search for records with the first name STEVE, who have a Toronto address:
|
matchRuleSet
| Specifies a match rule set based on which you want to identify the matching records.
If you do not have a specific match rule set, specify NONE. The automatic and the manual merge match rules are used.
|
filter
| Specifies the field values to use to filter the results of a fuzzy search.
For example, use the following query to search for records with the first name STEVE, who live in Toronto:
|
depth
| Specifies the number of child record levels to return. For example, you can specify the following levels:
For example, use the following query to search for records with the first name STEVE and return information about the root record and its direct child records:
|
suppressLinks
| Indicates whether the parent-child links are visible in the API response. Set the parameter to true to suppress all the parent-child links in the response. Default is false.
For example, use the following query to search for records with the first name STEVE and return a response where no parent-child links are visible:
|
readSystemFields
| Indicates whether to return the system fields in the result. Default is false.
|
fields
| Specifies the fields to display in the query results.
|
outputView
| Specifies the business entity view that you want to use to display the query results. When you configure the business entity view for the query results, include the fields that you want to display in the query results.
|
Person?action=match&fuzzyFilter=firstName='STEVE',lastName='SMITH'&filter=city=Toronto AND gender=Male
Person?action=match&fuzzyFilter=firstName='STEVE',lastName='SMITH'&filter=city in [Toronto,Ottawa]
<business entity field name>=[fromValue,toValue]
Person?action=match&fuzzyFilter=firstName='STEVE',lastName='SMITH'&filter=age=[35,45]
<business entity field name>=[fromDate,toDate]
Person?action=match&fuzzyFilter=firstName='STEVE',lastName='SMITH'&filter=birthDate=[2000-06-12T12:30:00Z,2015-06-12T12:30:00Z]