Salesforce — Real-time data
This connector captures data from Salesforce objects into Flow collections in real time via the Salesforce PushTopic API.
A separate connector is available for syncing historical Salesforce data. For help using both connectors in parallel, contact your Estuary account manager.
This connector is available for use in the Flow web application. For local development or open-source workflows, ghcr.io/estuary/source-salesforce-next:dev
provides the latest version of the connector as a Docker image. You can also follow the link in your browser to see past image versions.
Supported data resources
This connector can capture the following Salesforce standard objects, if present in your account:
- Account
- Contact
- User
- OpportunityFilledHistory
- LeadHistory
- Opportunity
- Campaign
- Case
- ContactLineItem
- Entitlement
- Lead
- LiveChatTranscript
- MessagingSession
- Quote
- QuoteLineItem
- ServiceAppointment
- ServiceContract
- Task
- UserServicePresence
- WorkOrder
- WorkOrderLineItem
Because most Salesforce accounts contain large volumes of data, you may only want to capture a subset of the available objects. There are several ways to control this:
-
Create a dedicated Salesforce user with access only to the objects you'd like to capture.
-
During capture creation in the web application, remove the bindings for objects you don't want to capture.
Prerequisites
Using OAuth2 to authenticate with Salesforce in the Flow web app
If you're using the Flow web app, you'll be prompted to authenticate with Salesforce using OAuth. You'll need the following:
-
A Salesforce organization on the Enterprise tier, or with an equivalent API request allocation.
-
Salesforce user credentials. We recommend creating a dedicated read-only Salesforce user.
Configuring the connector specification manually
If you're working with flowctl and writing specifications in a local development environment, you'll need to manually supply OAuth credentials. You'll need:
-
The items required to set up with OAuth2.
-
A Salesforce developer application with a generated client ID, client secret, and refresh token. See setup steps.
Setup
Create a read-only Salesforce user
Creating a dedicated read-only Salesforce user is a simple way to specify which objects Flow will capture.
-
While signed in as an administrator, create a new profile by cloning the standard Minimum Access profile.
-
Edit the new profile's permissions. Grant it read access to all the standard and custom objects you'd like to capture with Flow.
-
Create a new user, applying the profile you just created. You'll use this user's email address and password to authenticate Salesforce in Flow.
Create a developer application and generate authorization tokens
To manually write a capture specification for Salesforce, you need to create and configure a developer application. Through this process, you'll obtain the client ID, client secret, and refresh token.
-
Create a new developer application.
a. When selecting Scopes for your app, select Manage user data via APIs
(api)
, Perform requests at any time(refresh_token, offline_access)
, and Manage user data via Web browsers(web)
. -
Edit the app to ensure that Permitted users is set to All users may self-authorize.
-
Locate the Consumer Key and Consumer Secret. These are equivalent to the client id and client secret, respectively.
-
Follow the Salesforce Web Server Flow. The final POST response will include your refresh token.
Configuration
You configure connectors either in the Flow web app, or by directly editing the catalog specification file. See connectors to learn more about using connectors. The values and specification sample below provide configuration details specific to the real-time Salesforce source connector.
Properties
Endpoint
The properties in the table below reflect the manual authentication method.
If you're working in the Flow web app, you'll use OAuth2,
so you won't need the /credentials
values listed here.
Property | Title | Description | Type | Required/Default |
---|---|---|---|---|
/credentials | object | Required | ||
/credentials/client_id | Client ID | The Salesforce Client ID, also known as a Consumer Key, for your developer application. | string | Required |
/credentials/client_secret | Client Secret | The Salesforce Client Secret, also known as a Consumer Secret, for your developer application. | string | Required |
/credentials/refresh_token | Refresh Token | The refresh token generated by your developer application. | string | Required |
/is_sandbox | Sandbox | Whether you're using a Salesforce Sandbox. | boolean | false |
Bindings
Property | Title | Description | Type | Required/Default |
---|---|---|---|---|
/stream | Stream | Salesforce object from which a collection is captured. | string | Required |
Sample
captures:
${PREFIX}/${CAPTURE_NAME}:
endpoint:
connector:
image: ghcr.io/estuary/source-salesforce-next:dev
config:
credentials:
client_id: {your_client_id}
client_secret: {secret}
refresh_token: {XXXXXXXX}
is_sandbox: false
bindings:
- resource:
stream: WorkOrder
target: ${PREFIX}/WorkOrder
- resource:
stream: WorkOrderLineItem
target: ${PREFIX}/WorkOrderLineItem