Salesforce Source
Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Stable"
Receive updates from Salesforce.
Configuration Options
The following table summarizes the configuration options available for the salesforce-source
Kamelet:
Property | Name | Description | Type | Default | Example |
---|---|---|---|---|---|
Consumer Key | Required The Salesforce application consumer key. | string | |||
Consumer Secret | Required The Salesforce application consumer secret. | string | |||
Password | Required The Salesforce user password. | string | |||
Query | Required The query to execute on Salesforce. | string | SELECT Id, Name, Email, Phone FROM Contact | ||
Topic Name | Required The name of the topic or channel. | string | ContactTopic | ||
Username | Required The Salesforce username. | string | |||
Login URL | The Salesforce instance login URL. | string | |||
Notify For Fields | Notify for fields. Enum values: * ALL * REFERENCED * SELECT * WHERE | string | ALL | ||
Notify Operation Create | Notify for create operation. | boolean | true | ||
Notify Operation Delete | Notify for delete operation. | boolean | false | ||
Notify Operation Undelete | Notify for undelete operation. | boolean | false | ||
Notify Operation Update | Notify for update operation. | boolean | false | ||
Operation | The operation to use. | string | subscribe | ||
Raw Payload | Use raw payload String for request and response (either JSON or XML depending on format), instead of DTOs, false by default. | boolean | false |
Dependencies
At runtime, the salesforce-source
Kamelet relies upon the presence of the following dependencies:
-
camel:jackson
-
camel:salesforce
-
camel:kamelet
Camel JBang usage
Prerequisites
-
You’ve installed JBang.
-
You have executed the following command:
jbang app install camel@apache/camel
Supposing you have a file named route.yaml with this content:
- route:
from:
uri: "kamelet:salesforce-source"
parameters:
.
.
.
steps:
- to:
uri: "kamelet:log-sink"
You can now run it directly through the following command
camel run route.yaml