Custom Merge Service
Learn how the SFDC connector enables you to use Custom Merge Service to implement the merge functionality.
The Custom Merge Service calls the Standard Merge Service for merging multiple objects. It is not mandatory to call the Standard Merge service for merging objects. Merging objects can be completed using the custom code. You can call a Standard Merge Service using the Custom Merge Service code.
Request
Body
Response
The following table describes parameters required for the merge operation.
Parameter |
Type |
Required |
Description |
---|---|---|---|
success |
Boolean | true | Defines the status of the merge operation. The Possible values are true or false. |
winnerId |
String | true | Defines the sobject ID for the winners. |
loserIds |
Array of Strings | true | Defines the list of loser IDs. |
message |
String | false | Defines the error messages. |
Profile Configuration
You need to add customMergeService parameter to profile configuration to switch to Custom Merge Service.
Mapping configuration
Example for Mapping
Example for Custom Merge Service
Merging of Multiple Objects
The Custom Merge Service enables to override the Standard Merge Service logic. It is not mandatory to call the Standard Merge Service to perform the objects merge, it can be completely done using the custom code.
The Custom Merge Service allows calling Standard Merge Service from the code to perform the object merge.
Retry Logic for Merge Request
The connector can retry the merge requests based on the service response for the Custom Merge Service.
The requests would be retried repeatedly when the response contains"success":
false
. You can configure the retry count using salesforce.numRetries parameter in the relevant profile. For more information, see Configure your Salesforce Connector Profile.
"success": false
to
avoid data inconsistency. You can’t retry the requests if the Custom Merge Service provides an incorrect response structure (the structure without the winner or loser ID).