first commit

This commit is contained in:
Rene Kaßeböhmer
2025-03-27 13:11:59 +01:00
commit 3b7ff25779
5 changed files with 50 additions and 0 deletions

43
export.json Normal file
View File

@ -0,0 +1,43 @@
{
"objects": [
{
"query": "SELECT address_identifier, City, Country, PostalCode, Street, Latitude, Longitude, CountryCode FROM Address",
"operation": "Insert",
"externalId": "address_identifier",
"useFieldMapping": true,
"fieldMapping": [
{
"targetObject": "Address"
},
{
"sourceField": "City",
"targetField": "City"
},
{
"sourceField": "Country",
"targetField": "Country"
},
{
"sourceField": "PostalCode",
"targetField": "PostalCode"
},
{
"sourceField": "Street",
"targetField": "Street"
},
{
"sourceField": "Latitude",
"targetField": "Latitude"
},
{
"sourceField": "Longitude",
"targetField": "Longitude"
},
{
"sourceField": "CountryCode",
"targetField": "CountryCode"
}
]
}
]
}