Newer Version Available

This content describes an older version of this product. View Latest

Data Cloud Identity Resolution Rulesets

Get identity resolution rulesets. Create an identity resolution ruleset.
Resource
1/ssot/identity-resolutions
Available version
57.0
Requires Chatter
No
HTTP methods
GET, POST
Response body for GET
Data Cloud Identity Resolutions Output
Request body for POST
JSON example
1{
2    label: 'some label',
3    description: 'description',
4    configurationType: 'INDIVIDUAL', // enum: INDIVIDUAL, ACCOUNT 
5    rulesetId: 'sufx',
6    matchRules: [
7        {
8            label: 'Normalized Email',
9            criteria: [
10                {
11                    entityName: 'orgnamespace__*ContactPointEmail*MyDataSpace__dlm',
12                    fieldName: 'orgnamespace__*EmailAddress*__c',
13                    matchMethodType: 'EXACT_NORMALIZED',
14                    shouldMatchOnBlank: false
15                }
16            ]
17        },
18        {
19            label: 'Last Name and PartyId',
20            criteria: [
21                {
22                    entityName: 'orgnamespace__*Individual*MyDataSpace__dlm',
23                    fieldName: 'orgnamespace__*LastName*__c',
24                    matchMethodType: 'EXACT',
25                    shouldMatchOnBlank: false
26                    partyIdentificationInfo: {
27                        partyName: 'SomeID'
28                    }
29                }
30            ],
31        },
32    ],
33    reconciliationRules: [
34        {
35            entityName: 'orgnamespace__*Individual*MyDataSpace__dlm',
36            ruleType: 'LAST_UPDATED',
37            shouldIgnoreEmptyValue: true,
38            fields: [
39                {
40                    fieldName: 'orgnamespace__*Id*__c',
41                    ruleType: 'SOURCE_SEQUENCE',
42                    shouldIgnoreEmptyValue: true,
43                    sources: [
44                        {
45                            name: 'Patients__dll'
46                        },
47                        {
48                            name: 'SomeAnother__dll'
49                        }
50                   ]
51                }
52            ]
53        },
54        {
55            entityName: 'orgnamespace__*ContactPointEmail*MyDataSpace__dlm', ...
56        },
57        ...
58    ]
59}
Properties
Name Type Description Required or Optional Available Version
configurationType String Source object for an identity resolution ruleset. Values are:
  • Account
  • Individual
Required 57.0
description String Description of the identity resolution ruleset. Optional 57.0
doesRun​Automatically Boolean Specifies whether automatic job run scheduling is enabled for the ruleset (true) or not (false). If unspecified, defaults to false. Optional 57.0
label String User friendly name of the identity resolution ruleset. Required 57.0
matchRules Data Cloud Identity Resolution Match Rule Input[] List of match rules for the identity resolution ruleset. Optional 57.0
reconciliationRules Data Cloud Identity Resolution Reconciliation Rule Input[] List of reconciliation rules for the identity resolution ruleset. Required 57.0
rulesetId String Extended ID of the ruleset used to differentiate between rulesets created for comparison. The ruleset ID must be unique and can't be longer than 4 characters. Optional 57.0
Response body for POST
Data Cloud Identity Resolution Output