Hi Karthik
just to confirm, you are saying that via RIH it allowed you to load a record with null as the crosswalk value?
I just tried creating a record with null as the crosswalk value and got this error in the output below. Perhaps we are doing something slightly different in our recipes:
{
"index": 0,
"errors": {
"severity": "Error",
"errorMessage": "Crosswalk 'value' property missed.",
"errorCode": 126,
"errorDetailMessage": "Crosswalk 'value' property missed {\"type\":\"Salesforce\",\"value\":null}."
},
"successful": false
}
this was my input:
{
"object": "entity",
"type": "configuration/entityTypes/Organization",
"record": {
"crosswalks": [
{
"type": "Salesforce",
"value": null
}
],
"attributes": {
"Name": "A NAME WITHOUT ADDRESS",
"Address": [
{
"AddressLine1": null,
"Zip": [
{
"Zip5": null
}
],
"StateProvince": null,
"City": null,
"refEntity": {
"crosswalks": [
{
"type": null,
"value": null
}
]
},
"refRelation": {
"crosswalks": [
{
"type": null,
"value": null
}
]
}
}
]
}
}
}
------------------------------
Guy Vorster
------------------------------