Get All Changes for Specific Object
Returns all changes for given object from data change request.
Request:
GET {TenantURL}/{changeRequestURI}/changes/{objectURI}
        | 
                             Parameter  | 
                             Name  | 
                             Required  | 
                             Details  | 
|---|---|---|---|
| Headers |  Authorization
                         | Yes |  Information about authentication access token in format "Bearer <accessToken>" (see details in Auth API).  | 
| Query |  showConflicts
                         | No | 
                             All object change items will be checked for conflicts, and the "conflict" property with the type of conflict will be present in case of any conflict. Default value is false .  | 
Response
JSON array with all changes for given object from the data change request.
 GET /testTenant/changeRequests/0ijlH98/changes/entities/0000aED 
[{
  "id": "0001Uhd",
  "type": "CREATE_ENTITY",
  "createdTime": 1452537770447,
  "createdBy": "User",
  "newValue": {
    "URI": "entities/0000aED",
    "type": "configuration/entityTypes/Address",
    "attributes": {
      "AddressRank": [{
        "value": "7789"
      }]
    },
    "crosswalks": [{
      "type": "configuration/sources/SHS",
      "value": "r3_shs",
      "dataProvider": true
    }],
    "startObject": {
      "objectURI": "entities/00005KL"
    },
    "endObject": {
      "objectURI": "entities/0000MNN"
    }
  }
}]