Export Configuration

Exporting a Plauti Deduplicate 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)

BASH
sf org login web --alias my-org

2. Run the Export Command

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

Optional Flags

Flag Description Example
--pollinterval Time (in seconds) to wait between status checks (default: 3) --pollinterval 10
--apiversion Override the default Salesforce API version --apiversion 59.0
--loglevel Adjust the logging verbosity (info, warn, error, etc.) --loglevel info
--json Output the result as JSON (useful for scripting) --json

Example

BASH
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.