2.4 KiB
2.4 KiB
The Salesforce integration allows you to search, create, update, and delete Salesforce objects (contacts, leads, cases) and make direct API requests.
Integration Setup
- Install the Integration
- Click the Authorize or Connect with OAuth button to authorize with Salesforce and complete the installation process.
- To use Salesforce's Sandbox environment instead, select the Sandbox configuration type before connecting.
How-To
Make API request
- Make API Request action acting as a proxy allowing users to make request to the Salesforce API.
- Pass valid HTTP method, URL path ("yourinstance.salesforce.com/services/data/v54.0/PATH"), and additional request data if needed.
Search Contacts
- In Studio, add the Search Contacts card to your flow.
- Pass at least one search criteria in the card input.
- You can store the result of the action in a variable.
Create Contact
- In Studio, add the Create Contact card to your flow.
- Pass the contact information in the card input.
First Name,Last Name,Emailfields are required. - You can pass custom fields in JSON format
- You can store the
Idof the created contact in a variable.
Update Contact
- In Studio, add the Update Contact card to your flow.
- Pass the
Idof the contact to be updated and the field that need to be updated - You can pass custom fields in JSON format
- You can store the
Idof the updated contact in a variable.
Search Leads
- In Studio, add the Search Leads card to your flow.
- Pass at least one search criteria in the card input.
- You can store the result of the action in a variable.
Create Leads
- In Studio, add the Create Leads card to your flow.
- Pass the contact information in the card input.
First Name,Last Name,Email,Companyfields are required. - You can pass custom fields in JSON format
- You can store the
Idof the created contact in a variable.
Update Leads
- In Studio, add the Update Leads card to your flow.
- Pass the
Idof the contact to be updated and the field that need to be updated - You can pass custom fields in JSON format
- You can store the
Idof the updated contact in a variable.

