Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created July 19, 2013 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marianogonzalez/6040626 to your computer and use it in GitHub Desktop.
Save marianogonzalez/6040626 to your computer and use it in GitHub Desktop.
<flow name="happy-load-contact">
<ftp:inbound-endpoint host="${ftp.host}" port="21" path="${ftp.path}"
user="${ftp.user}" password="${ftp.pass}" responseTimeout="10000"/>
<expression-filter expression="#[flowVars['accessTokenId'] != '']" doc:name="Is Access Token Set"/>
<data-mapper:transform config-ref="csv_to_contact"/>
<sfdc:create-single config-ref="Salesforce" type="Contact">
<sfdc:object ref="#[payload]"/>
</sfdc:create-single>
</flow>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment