Connecting Salesforce to Tulip

Hey everyone!

We don’t have an example of a Salesforce ↔ Tulip connector in the Library (yet), but it is definitely possible to do this. In fact, we use this in our own internal processes when fulfilling our hardware orders!

Here is a video that walks through one of the ways you can authenticate your connection between Tulip and Salesforce. I’ll say that I am not an expert in APIs, so I wouldn’t be surprised if there is an easier / better way to do this. Please let me know if there is a simpler way!

Hopefully this will help those in the community who are looking for a salesforce connector or having trouble setting up the connection.

Some of the copy/pasted code:

curl -D - "https://login.salesforce.com/services/oauth2/authorize?response_type=code&redirect_uri=https://login.salesforce.com/services/oauth2/success&client_id=<CONSUMER_KEY>"
curl -X POST "https://login.salesforce.com/services/oauth2/token?grant_type=authorization_code&redirect_uri=https://login.salesforce.com/services/oauth2/success&client_secret=<CONSUMER_SECRET>&client_id=<CONSUMER_KEY>&code=<CODE>"

Thanks
Mark

1 Like