Skip to main content

πŸš€ Quickstart

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

Create the integration

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

Authorize Salesforce

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

Call the Salesforce API

Let’s make your first request to the Salesforce API (fetch a list of contacts). Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/services/data/v58.0/query?q=SELECT+Id,FirstName,LastName,Email+FROM+Contact+LIMIT+10" \
  -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 Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š Salesforce Integration Guides

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

🧩 Pre-built syncs & actions for Salesforce

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

Others

Function nameDescriptionTypeSource code
accountsSync Salesforce Account records with a practical default field setSyncπŸ”— Github
articlesSync Salesforce knowledge articles with title, content, and modified timestampsSyncπŸ”— Github
casesSync Salesforce Case records with common service and status fields.SyncπŸ”— Github
contactsSync Salesforce Contact records with a practical default field setSyncπŸ”— Github
opportunitiesSync Salesforce Opportunity records with amount, stage, close date, and owner fields.SyncπŸ”— Github
records-by-soqlSync arbitrary Salesforce records from a caller-provided SOQL querySyncπŸ”— Github
ticketsSync Salesforce case tickets with core fields and related conversation context.SyncπŸ”— Github
usersSync Salesforce User records with profile, email, and active state fields.SyncπŸ”— Github