Question
Want to divide a DCR, if some attribute updates are able to be auto-approved and/or some require a data steward and/or some require the approval of a third party. How can I achieve that?
Answer
Now, along with the override functionality, Data Change Request (DCR) also supports partial override changes in entities. As a result, if the partialOverride flag is set on DCR creation, then changes are applied according to the partialOverride logic.
POST {TenantURL}/entities?options=partialOverride&alwaysCreateDCR=true
[
{
"type": "configuration/entityTypes/HCP",
"attributes": {
"Name": [
{
"value": "newValue"
}
]
},
"crosswalks": [
{
"type": "configuration/sources/Veeva",
"value": "HCP_XW"
}
]
}
]
References
https://docs.reltio.com/dcrapi/fullandpartialovrrideindcr.html
Comments
Please sign in to leave a comment.