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:
    bash
    sf org login web --alias my-org
  • A CSV file prepared as explained in CSV Requirements

Basic Command

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

Required Flags

Flag Description
--file Path to your CSV file
--sourceobject Object prefix for SourceId records (e.g., 003 = Contact)
--matchobject Object prefix for MatchId records (must match object type)
-u Alias or username of your Salesforce Org

Optional Flags

Flag Description
--delimiter Use if your CSV uses ; or \t
--json Output result in JSON format
--loglevel Log 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.