Hello,
I'm trying to bulk upsert accounts with references into salesforce.
Let's say we have a salesforce property named "anotherAccount__c".
This property is a reference to another account.
We have another salesforce property named "login__c".
I want to update the property "anotherAccount__c" to make it reference an account with the login "referencedLogin"
Using postman and rest bulk api, I can update the reference using a particular syntax allowing me to do this without having the referenced salesforce id.
To achieve this, I tell the api that I want to update the property "anotherAccount__r.login__c" with the value "referencedLogin"
How to reproduce this behaviour with Stambia?