camel-salesforce-update-sink-kafka-connector sink configuration
Connector Description: Update an object in Salesforce. The body received must contain a JSON key-value pair for each property to update inside the payload attribute, for example: `{ "payload": { "Phone": "1234567890", "Name": "Antonia" } }` The body received must include the `sObjectName` and `sObjectId` properties, for example: `{ "payload": { "Phone": "1234567890", "Name": "Antonia" }, "sObjectId": "sObjectId", "sObjectName": "sObjectName" }`
When using camel-salesforce-update-sink-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-salesforce-update-sink-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
To use this sink connector in Kafka connect you’ll need to set the following connector.class
connector.class=org.apache.camel.kafkaconnector.salesforceupdatesink.CamelSalesforceupdatesinkSinkConnector
The camel-salesforce-update-sink sink connector supports 5 options, which are listed below.
Name | Description | Default | Priority |
---|---|---|---|
The Salesforce instance login URL. | "https://login.salesforce.com" | MEDIUM | |
Required The Salesforce application consumer key. | HIGH | ||
Required The Salesforce application consumer secret. | HIGH | ||
Required The Salesforce username. | HIGH | ||
Required The Salesforce user password. | HIGH |
The camel-salesforce-update-sink sink connector has no converters out of the box.
The camel-salesforce-update-sink sink connector has no transforms out of the box.
The camel-salesforce-update-sink sink connector has no aggregation strategies out of the box.