Export Configuration

Exporting a Duplicate Check configuration allows you to save your current setup as a JSON file. This can be reused later for import into the same or another Salesforce Org.

1. Authenticate with Your Org (if needed)

sf org login web --alias my-org

2. Run the Export Command

sf plauti duplicatecheck config export -u my-org --file ./export/your_config.json

Optional Flags

FlagDescriptionExample
--pollintervalTime (in seconds) to wait between status checks (default: 3)--pollinterval 10
--apiversionOverride the default Salesforce API version--apiversion 59.0
--loglevelAdjust the logging verbosity (info, warn, error, etc.)--loglevel info
--jsonOutput the result as JSON (useful for scripting)--json

Example

sf plauti duplicatecheck config export -u my-org --file ./export/my_dedupe_config.json --pollinterval 5

After Export

The configuration file will be saved locally at the path you specified. Keep this file secure, especially if you're handling sensitive configuration details.

Tip: Use version control (like Git) to track changes to your configuration over time.