Skip to main content

πŸš€ Quickstart

Connect to Salesforce Sandbox with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Salesforce Sandbox.
2

Authorize Salesforce Sandbox

Go to Connections -> Add Test Connection -> Authorize, then log in to Salesforce Sandbox. Later, you’ll let your users do the same directly from your app.
3

Call the Salesforce Sandbox API

Let’s make your first request to the Salesforce Sandbox API. Replace the placeholders below with your secret key, integration ID, and connection ID:
  • cURL
  • Node
curl "https://api.nango.dev/proxy/services/data/v60.0/sobjects" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials with the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our quickstart to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š Salesforce Sandbox Integration Guides

Nango maintained guides for common use cases. Official docs: Salesforce Web API docs

🧩 Pre-built syncs & actions for Salesforce Sandbox

Enable them in your dashboard. Extend and customize to fit your needs.

Accounts

Function nameDescriptionTypeSource code
create-accountCreate a single account in salesforceActionπŸ”— Github
update-accountUpdate a single account in salesforceActionπŸ”— Github
delete-accountDelete a single account in salesforceActionπŸ”— Github
accountsFetches a list of accounts from salesforceSyncπŸ”— Github

Contacts

Function nameDescriptionTypeSource code
create-contactCreate a single contact in salesforceActionπŸ”— Github
update-contactUpdate a single contact in salesforceActionπŸ”— Github
delete-contactDelete a single contact in salesforceActionπŸ”— Github
contactsFetches a list of contacts from salesforceSyncπŸ”— Github

Leads

Function nameDescriptionTypeSource code
create-leadCreate a single lead in salesforceActionπŸ”— Github
update-leadUpdate a single lead in salesforceActionπŸ”— Github
delete-leadDelete a single lead in salesforceActionπŸ”— Github
leadsFetches a list of leads from salesforceSyncπŸ”— Github

Opportunities

Function nameDescriptionTypeSource code
create-opportunityCreate a single opportunity in salesforceActionπŸ”— Github
update-opportunityUpdate a single opportunity in salesforceActionπŸ”— Github
delete-opportunityDelete a single opportunity in salesforceActionπŸ”— Github
opportunitiesFetches a list of opportunities from salesforceSyncπŸ”— Github

Users

Function nameDescriptionTypeSource code
whoamiFetch current user informationActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
fetch-fieldsFetch available task fields, child relationships and validation rules. If the input is not specified then it defaults back to β€œTask” Data Validation: Parses all incoming data with Zod. Does not fail on parsing error will instead log parse error and return result.ActionπŸ”— Github
articlesFetches a list of articles from salesforceSyncπŸ”— Github
ticketsFetches a list of tickets from salesforceSyncπŸ”— Github