Accelerate the Value of Data

Full and Partial Override Support in DCR

Data change requests support full and partial override changes in entities.

Data change requests support full and partial override changes in entities. If the partialOverride flag is set on DCR creation, then changes are applied according to partialOverride logic.

Entity Update Request for Partial Override

POST {TenantURL}/entities?options=partialOverride&alwaysCreateDCR=true
[
  {
    "type": "configuration/entityTypes/HCP",
    "attributes": {
      "Name": [
        {
          "value": "newValue"
        }
      ]
    },
    "crosswalks": [
      {
        "type": "configuration/sources/Veeva",
        "value": "HCP_XW"
      }
    ]
  }
]

Entity Update Request for Full Override

POST {TenantURL}/entities?alwaysCreateDCR=true
[
  {
    "type": "configuration/entityTypes/HCP",
    "attributes": {
      "Name": [
        {
          "value": "newValue"
        }
      ]
    },
    "crosswalks": [
      {
        "type": "configuration/sources/Veeva",
        "value": "HCP_XW"
      }
    ]
  }
]