Accelerate the Value of Data

Get Data Change Request

Returns a data change request by ID.

Request:

 GET {TenantURL}/changeRequests/{id}
Table 1. Parameters

Parameter

Name

Required

Details

Headers Authorization Yes Information about authentication access token in format "Bearer <accessToken>" (see details in Auth API).
Path id Yes ID of a Data Change Request
Query showConflicts No

Data change will be checked for conflicts, and the "conflict" property with the type of conflict will be present in all conflicted change items.

The default value is false.

showObjectsInfo No

If this parameter is set to true, information about objects participating in the data change request will be present.

The default value is false.

showObjectsMetadataNoIf this parameter is set to true, information about objects participating in the data change request is also available. For referenced entities, only objectURI fields are corrected. The default value is false.
selectNoComma-separated list of properties from Data Change Request structure that should be returned in a response. Allows to return a partial object. The list of properties can be found in the response model.

Response

JSON Object representing a data change request.

Get Data Change Request

{
  "URI": "changeRequests/0000OVV",
  "createdBy": "User",
  "createdTime": 1445452647170,
  "updatedBy": "User",
  "updatedTime": 1445452647170,
  "changes": {
    "entities/00005KL": [{
      "id": "0000jon",
      "type": "INSERT_ATTRIBUTE",
      "createdTime": 1445452647560,
      "createdBy": "User",
      "attributePath": "ProductMetrics/3/ExternalID",
      "newValue": {
        "value": "NewId"
      },
      "crosswalk": {
        "type": "configuration/sources/Veeva",
        "value": "e1"
      }
    }]
  },
  "state": "APPLIED"
}