Rahul,
I believe in the sample, Ashish used FirstName as an example only. As long as you have an existing crosswalk id and the new crosswalk id, you can use the same example format to add the new crosswalk and the attributes associated with the new crosswalk. You don't need to provide any existing attributes in the request.
If you want to use Reltio entity id, you can use the same JSON structure as Ashish shared, but provide the entity id under a Reltio crosswalk instead. Here is a sample for your reference.
[
{
"type": "configuration/entityTypes/Person",
"attributes": {
"NewAttribute": [
{
"value": "Jacob"
}
]
},
"crosswalks": [
{
"type": "Reltio",
"value": "<<Reltio Entity Id>>",
"contributorProvider": true,
"dataProvider": false
},
{
"type": "<<New Source>>",
"value": "<<New crosswalk ID>>",
"dataProvider": true
}
]
}
]
------------------------------
Diparnab Dey
Technical Consultant
Reltio
Kolkata, West Bengal
------------------------------
Original Message:
Sent: 03-24-2025 13:31
From: Rahul Kumar Singh
Subject: New crosswalk to be created for a newly added source and related newly added attributes using API for existing Entity id
Thanks Ashish, i am aware of this, however the question is can i just use entity id, as i don't have other info like name etc.
------------------------------
Rahul Kumar Singh
Symetra
------------------------------
Original Message:
Sent: 03-24-2025 05:15
From: Ashish Rawat
Subject: New crosswalk to be created for a newly added source and related newly added attributes using API for existing Entity id
Here is a sample API which can associate new contributor crosswalks for an existing records
POST {{tenantURL}}/entities?
Body
[
{
"type": "configuration/entityTypes/Person",
"attributes": {
"FirstName": [
{
"value": "Jacob"
}
]
},
"crosswalks": [
{
"type": "<<Existing Source>>",
"value": "<<Existing Crosswalk>>",
"contributorProvider": true,
"dataProvider": false
},
{
"type": "<<New Source>>",
"value": "<<New crosswalk ID>>",
"dataProvider": true
}
]
}
]
------------------------------
Ashish Rawat
Sr. Manager
Fresh Gravity
Bangalore