Chapter 67. Salesforce Delete Sink


Remove an object from Salesforce.

The data body must be JSON-formatted and it must contain two keys: sObjectId and sObjectName. For example: { "sObjectId": "XXXXX0", "sObjectName": "Contact" }

67.1. Configuration Options

The following table summarizes the configuration options available for the salesforce-delete-sink Kamelet:

Expand
PropertyNameDescriptionTypeDefaultExample

clientId *

Consumer Key

The Salesforce application consumer key.

string

  

clientSecret *

Consumer Secret

The Salesforce application consumer secret.

string

  

password *

Password

The Salesforce user password.

string

  

userName *

Username

The Salesforce username.

string

  

loginUrl

Login URL

The Salesforce instance login URL.

string

https://login.salesforce.com

 

* = Fields marked with an asterisk are mandatory.

67.2. Dependencies

67.2.1. Quarkus dependencies

<dependencies>
  <dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifact>camel-quarkus-core</artifact>
  </dependency>
  <dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifact>camel-quarkus-jsonpath</artifact>
  </dependency>
  <dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifact>camel-quarkus-kamelet</artifact>
  </dependency>
  <dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifact>camel-quarkus-salesforce</artifact>
  </dependency>
  <dependency>
    <groupId>org.apache.camel.kamelets</groupId>
    <artifact>camel-kamelets-utils</artifact>
    <version>4.8.5</version>
  </dependency>
</dependencies>
Copy to Clipboard Toggle word wrap

67.3. Usage

67.4. Kamelets source file

https://github.com/jboss-fuse/camel-kamelets/blob/camel-kamelets-4.10.3-branch/kamelets/salesforce-delete-sink.kamelet.yaml

Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2026 Red Hat
Back to top