Hi Akshaya,
You can use the bulk update API to append values to an existing simple attribute. If the survivorship of the simple attribute is Aggregation then all existing values will be OV else only the latest value will be OV.
PFB the API sample used to achieve the same for a sample containing only a single crosswalk.
For details, you can refer the documentation link.
Bulk Update of AttributesAPI used: POST {{tenantURL}}/entities/_update
Request Body:{
"objects": {
"filter": "(equals(type,'configuration/entityTypes/Individual') and equals(id,'4W5ff44')",
"excludeList": [
"entities/KKK"
]
},
"actions": [
{
"operationParameters": {
"sourceTypes": [
"LNKD"
],
"attributeURI": "configuration/entityTypes/Individual/attributes/FirstName",
"attributeValue": "Name3"
},
"operation": "AddAttribute"
}
]
}
------------------------------
Saquib Muslim
Accenture
------------------------------
Original Message:
Sent: 12-27-2022 03:35
From: Akshaya Jawaharr
Subject: is there a way to append the multiple values instead of overwriting for a single attribute in reltio
Inorder to append/update a simple attribute having 100+values , we need to pull 100+ values and append the latest value.is there a way to append the value with the existing records instead of overriding it
------------------------------
Akshaya Jawaharr
------------------------------