- Documentation
Salesforce integration
Create, query, and react to record changes across your clients' Salesforce orgs from any TaskJuice workflow.
What it does
The Salesforce integration lets your agency move data in and out of every client's Salesforce org from a single workflow. Connect a client's org once and TaskJuice can create, read, update, and delete records on any standard or custom object, run SOQL queries, manage Leads, Contacts, Opportunities, Cases, and Tasks, kick off Flows, work with Bulk API 2.0 query jobs, run reports, and trigger a workflow whenever a record changes.
Connect a Salesforce account
- Open your workspace in TaskJuice and navigate to Connections.
- Choose Salesforce and click Connect.
- Sign in with the Salesforce user whose org you want to manage on behalf of your client. Production orgs authenticate against
login.salesforce.com; sandbox orgs authenticate againsttest.salesforce.comand need a separate connection. - Approve the requested scopes (
apifor REST access andrefresh_tokenso TaskJuice can refresh access tokens without re-prompting). - TaskJuice returns you to the workspace with the connection ready to use in any workflow.
To revoke access at any time, the connected user can visit Setup, open the Connected Apps OAuth Usage page in their Salesforce org, and revoke the TaskJuice entry.
Triggers
salesforce/record-changedpolls a configurable Salesforce object on an interval and emits one cycle per poll containing every record whoseLastModifiedDateadvanced past the prior watermark. Configure the object name (e.g.Opportunity,Lead,Contact,Account), the SELECT field list, and an optional extraWHEREpredicate. Drop a Loop node downstream to fan out one branch per record.
Salesforce also publishes the Streaming API, Platform Events, and Change Data Capture for real-time delivery. Those channels require per-org provisioning and a Platform Events license, so TaskJuice ships polling as the default declarative path. Reach out if your client's org needs the streaming path and we will provision the dedicated workflow.
Actions
salesforce/create-recordinserts a new record on any standard or custom object you specify.salesforce/get-recordreads a single record by ID, with an optional projection of the fields to return.salesforce/update-recordpatches one or more fields on an existing record.salesforce/delete-recordremoves a record from the org.salesforce/upsert-recordinserts or updates a record keyed by an external ID field.salesforce/execute-soqlruns a SOQL query and returns the first batch of records.salesforce/find-recordruns a SOQL query and returns one record (useLIMIT 1in the query).salesforce/find-recordsruns a SOQL query and returns the matching records (useLIMITto bound the batch).salesforce/create-lead,salesforce/update-leadwrite Lead records without needing to name the object on every call.salesforce/create-contact,salesforce/update-contactwrite Contact records the same way.salesforce/create-opportunity,salesforce/create-case,salesforce/create-taskwrite the matching object kinds.salesforce/add-note-to-record,salesforce/get-record-attachmentswork with the file and note surfaces.salesforce/add-lead-to-campaign,salesforce/add-contact-to-campaignwrite CampaignMember rows.salesforce/list-flows,salesforce/invoke-flowdiscover and run autolaunched Flows.salesforce/create-query-job,salesforce/get-query-job,salesforce/get-query-job-results,salesforce/abort-query-job,salesforce/list-query-jobsdrive the Bulk API 2.0 query surface for large result sets.salesforce/run-reportexecutes a Salesforce report by ID.salesforce/get-user,salesforce/list-userslook up org members.salesforce/api-callruns an arbitrary authenticated request against the org's REST surface for endpoints not covered by a typed action.
Known limitations
- Each Salesforce edition enforces per-org API call quotas. When the org returns a 429, TaskJuice surfaces it as a retryable rate-limit error and respects the recommended backoff.
- Production and sandbox orgs are separate environments and require separate connections. Pick the correct login host when connecting (
login.salesforce.comvstest.salesforce.com). - The polling trigger watermarks on
LastModifiedDate, which has one-second resolution. Records modified within the same second as the prior watermark may be emitted twice; the connected workflow should dedupe onIdif exactly-once semantics matter. - Real-time delivery via Platform Events, Change Data Capture, or the Streaming API is out of scope for the declarative connector. Those channels need per-org channel provisioning and are tracked separately.