Accelerate the Value of Data

Add UPDATE Attribute Request

Creates a change item inside data change request for the updating of an existing attribute.

It should be used in the same way as the request for updating attributes. The only difference is the changeRequestId parameter-it indicates that these changes must not be done in the real object; instead, they must be added to the given data change request for future review.
Note: Requests for "pinning" or "ignoring" of attributes are also supported.
Request:
PUT <TenantURL>/{attributeValueURI}
Table 1. Parameters
Parameter Name Required Details
Headers Authorization Yes Information about authentication access token in format "Bearer <accessToken>" (see details in Auth APID ).
Source-System No Source system this request is representing. Example: "configuration/sources/Reltio" when data is not loaded from other source systems and is created in Reltio Platform directly.
Content-Type Yes Should be "Content-Type: application/json".
Query changeRequestId No

ID of the data change request to which a new change item should be added.

crosswalkValue Yes-if Source-System is not 'Reltio'

ID of the entity object providing this attribute in the source system.

Example: an entity comes from Facebook and its identifier in Facebook is 'id3562'. For this entity, Source-System will be 'configuration/sources/Facebook' and crosswalkValue will be 'id3562'.

crosswalkSourceTable No  
Body   Yes JSON object representing attribute values to be used for creating/updating the data change request.
Note:  The changeRequestId parameter is not required if the user has READ privilege for the object and attribute, has INITIATE_CHANGE_REQUEST privilege for the attribute, but does not have UPDATE privilege for the attribute. A new data change request will be created automatically in this case.

Response

JSON Object representing the new change item.

{
  "id": "0000wbZ",
  "type": "UPDATE_ATTRIBUTE",
  "createdTime": 1445443808301,
  "createdBy": "User",
  "attributePath": "Identifiers/6",
  "oldValue": {
    "value": {
      "Type": [{
        "value": "Test"
      }],
      "ID": [{
        "value": "1111"
      }]
    }
  },
  "newValue": {
    "value": {
      "Type": [{
        "value": "NewType"
      }],
      "ID": [{
        "value": "666"
      }]
    }
  },
  "crosswalk": {
    "type": "configuration/sources/Veeva",
    "value": "e1"
  }
  }