You want to change the name in the master record from Sam Brown to John Smith. The change is attributed to the SFA source system. The trust settings are set to a minimum trust of 60 and a maximum trust of 90, and the trust decays linearly over a decay period of three months.
The following code shows the URL and command for Example 2.
POST http://localhost:8080/cmx/cs/localhost-orcl-ORS/Person/123?systemName=SFA
{
"firstName": "John",
"lastName": "Smith"
"$original": {
"firstName": "Sam",
"lastName": "Brown"
},
"TRUST": {
"firstName": {
"trustSetting" : {
custom: true,
minimumTrust: 60,
maximumTrust: 90,
timeUnit: "Month",
maximumTimeUnits: 3,
graphType: "LINEAR"
}
{
"lastName": {
"trustSetting" : {
custom: true,
minimumTrust: 60,
maximumTrust: 90,
timeUnit: "Month",
maximumTimeUnits: 3,
graphType: "LINEAR"
}
}
}
}