Skip to main content

Salesforce Delete by Query

Overview

This documentation provides detailed information about the "Salesforce Delete by Query" pipeline, which facilitates the deletion of records from Salesforce based on a records from Source Entity.

Pipeline Parameters

Name

This is the name of the pipeline.

Salesforce Settings

This group contains settings specific to your Salesforce instance and the resources you intend to access

Salesforce Object

The Salesforce object from which you want to import records. Example: Account You can find the list of available objects in your Salesforce instance by navigating to Setup > Object Manager.

Source Entity Settings

Settings for the source entity from which data is pulled before being upserted into Salesforce.

Source Entity

The entity from which data will be pulled for deleting into Salesforce.

Source Entity Only Updated

Indicates if only updated records should be considered.

Source Entity Filter

Criteria for selecting records from the source entity.

Source to Salesforce Mapping

Mapping of source entity fields to Salesforce fields. This mapping determines how data from the source entity is transformed and stored in Salesforce. Example:

{
"Salesforce_field_1": "$.data.source_field_1",
"Salesforce_field_2": "$.data.source_field_2",
"Salesforce_field_3": "$.data.source_field_3",
"Salesforce_external_id": "$.data.source_id"
}