Update wiki Home page for salesforce-composite-upsert-sink

gitea_admin 2026-03-11 14:39:52 +00:00
parent 648ba11b0e
commit 88ab0cf24a

44
Home.md

@ -1,21 +1,37 @@
# Deploy the Project on CamelX Platform
# Salesforce composite upsert Sink
Deploy on CamelX Platform in three steps
Upsert Composite List of sObjects in Salesforce.
## Step 1: Create a release
From the project space, click on **"Create a release"**
The body received must contain List of JSON SObjects to insert/update inside the records attribute, for example:
The new version is automatically available in the list
`{"records" : ["attributes" : {"type" : "KameletSinkSObject__c"},"ExtId__c" : "1","Name__c": "Ziauddin", "City__c": "Bhopal"], ["attributes" : {"type" : "KameletSinkSObject__c"},"ExtId__c" : "2","Name__c": "Shaikh", "City__c": "Bhopal"] }`
## Step 2: Deploy
Click on **"Deploy"**
## Metadata
- **Version:** Select the desired release
- **Environment:** Choose `Development`, `Staging`, or `Production`
- **Configuration:** Select the configuration source
- **Resources:** Set CPU and Memory
| Property | Value |
|----------|-------|
| Type | sink |
| Group | Salesforce |
| Namespace | Salesforce |
| Support Level | Stable |
| Provider | Apache Software Foundation |
## Step 3: Expose
Enable **"Expose"**
## Properties
Choose an **API Gateway** (Internal, Public, etc.)
| Name | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `sObjectName` | string | ✓ | | The type of the Salesforce object. Required if using a key-value pair. |
| `sObjectIdName` | string | ✓ | | The Field Name of the External ID of the Salesforce object. Required if using a key-value pair. |
| `loginUrl` | string | | `https://login.salesforce.com` | The Salesforce instance login URL. |
| `clientId` | string | ✓ | | The Salesforce application consumer key. |
| `clientSecret` | string | ✓ | | The Salesforce application consumer secret. |
| `userName` | string | ✓ | | The Salesforce username. |
| `password` | string | ✓ | | The Salesforce user password. |
## Dependencies
- `camel:core`
- `camel:jsonpath`
- `camel:jackson`
- `camel:salesforce`
- `camel:kamelet`