Create a DC Job from CSV

Plauti CLI Commands

You can create a Plauti Deduplicate job using a CSV file that defines pairs of records to compare or merge. This is ideal when you already know which records are duplicates and want Plauti to process them directly.

Prerequisites

  • Salesforce CLI (sf) installed
  • Plauti CLI plugin installed
  • You're authenticated with your Salesforce Org using:
    sf org login web --alias my-org
  • A CSV file prepared as explained in CSV Requirements

Basic Command

sf plauti duplicatecheck csv tojob \
  --file ./your-pairs.csv \
  --sourceobject 003 \
  --matchobject 003 \
  -u my-org

Required Flags

FlagDescription
--filePath to your CSV file
--sourceobjectObject prefix for SourceId records (e.g., 003 = Contact)
--matchobjectObject prefix for MatchId records (must match object type)
-uAlias or username of your Salesforce Org

Optional Flags

FlagDescription
--delimiterUse if your CSV uses ; or \t
--jsonOutput result in JSON format
--loglevelLog verbosity (info, warn, etc.)

After Running the Command

  • The job will appear in the Plauti Deduplicate Job in Salesforce.
  • You can review and run either a manual or automatic merge on the imported results.
  • No automated decisions are made, the job just defines the pairs for processing.