Salesforce Object
object
: the salesforce object nameauthUrl
: the url that issues the token, e.g. https://test.salesforce.com/services/oauth2/tokenclientId
: the encrypted client id for the connected appclientSecret
: the encrypted client secret for the connected appusername
: the salesforce user accountpassword
: the salesforce user accounts passwordautoAssign
: optional parameter, set this to true to leverage auto assignment in Salesforce
<SalesforceTarget
object="String"
authUrl="String"
clientid="String"
clientsecret="String"
username="String"
password="String"
autoAssign="True">
<ColumnMappings>
<ColumnMapping sourceColumn="Name" targetColumn="Name-new" />
<ColumnMapping sourceColumn="Number" targetColumn="Number_new" />
<ColumnMapping sourceColumn="Date" targetColumn="Date_new" />
</ColumnMappings>
<SyncKey>
<SyncKeyColumnReference name="Name" />
</SyncKey>
<NewRecordBehaviour type="INSERT" />
<DroppedRecordBehaviour type="DELETE"/>
</SalesforceTarget>
Last updated
Was this helpful?