|
• You must configure real-time sync separately for each custom object in your Service Board tenant.
• To configure real-time sync for custom objects in both directions between Salesforce and Service Board, special configuration steps are required. For more information, see Configuring Two-Way Real-Time Sync for Custom Objects.
|
Field | Value |
---|---|
Name | The name you want to use for the template, for example, Custom Object Create Template. |
Identifier | custom_object_svmx_custom_object_create |
Action | Patch |
Mapping Object | The custom object for which you are configuring real-time sync, for example, Custom Object. |
Field Mappings Operation | SFDC Namespace Transform |
Field Mappings | { "io_external_id": "fields.Id", "io_uuid": "concat('external-', fields.Id)", "svmx_name": "fields.Name__c", "io_owner": "concat('external-', fields.OwnerId)" } |
Field | Value |
---|---|
Name | The name you want to use for the template, for example, Custom Object Update Template. |
identifier | custom_object_svmx_custom_object_update |
Action | Patch |
Mapping Object | The custom object for which you are configuring real-time sync, for example, Custom Object. |
Field Mappings Operation | SFDC Namespace Transform |
Field Mappings | { "io_uuid": "concat('external-', criteria.Id)", "io_external_id": "criteria.Id", "svmx_name": "fields.Name__c", "io_owner": "concat('external-', fields.OwnerId)" } |
Field | Value |
---|---|
Name | The name for the setting, for example, SFDC Real-Time Sync Customize Transform Rules. |
Applicable Application | Service Board |
Identifier | This value is fixed and noneditable, and is always sfdc_realtime_sync_customize_transform_rules. |
Datatype | Code |
Default Value | { "create_Custom_Object__c": [ { "id": "custom_object_svmx_custom_object_create" } ], "update_Custom_Object__c": [ { "id": "custom_object_svmx_custom_object_update" } ] } |
The JSON in the Default Value field defines transform rules,. Rule syntax is <create | update>_<SFDC Object API Name>, and values are case-sensitive. In the sample in the previous table, the rule for the Create action is create_Custom_Object__c, and the rule for the Update action is update_Custom_Object__c. |