Accelerate the Value of Data

Ignore Attribute

Rise or drop an ignored flag for a particular attribute value.

This operation rises or drops an ignored flag for a particular attribute value.

Note: It is opposite to the "pin" value. When getting attribute values, ignored values are always returned last, no matter which survivorship strategy is set for this attribute type.

Request

PUT /{attributeValueURI}/ignore {"value": true}
Table 1. Parameters
Parameter Required Details

Headers

Authorization

Yes

Information about authentication access token in format Bearer <accessToken> (see details in Authentication API.

Body

 

Yes

JSON object representing attribute value "ignored" state.

Response

JSON objects with:

  • URI: URI of attribute that was updated/created.
  • error: if an object cannot be updated for some reason. Contains details of the problem. Returns only if an object was not updated.
    • Possible Errors:
  • warning: if object is updated but there were some problems.
  • status: result of operation; possible values are "OK" and "failed".

Request

Response

PUT /entities/00005KL/attributes/FirstName/49/pin
Headers:Authorization:Bearer 204938ca-2cf7-44b0-b11a-1b4c59984512,
Content-Type:application/json
Body:{
       "type":"configuration/entityTypes/Reltio.System.Individual/attributes/FirstName",
       "value":"Yury",
       "URI":"entities/00005KL/attributes/FirstName/49",
       "ignored":true
}