CSV file requirements

Plauti CLI Commands

The sf plauti duplicatecheck csv tojob command creates a duplicate results list in Salesforce by importing a list of known duplicate record pairs from a CSV file—each row specifies two records to compare. This is useful when you’ve already identified duplicates (e.g., through external analysis or reporting) and want Plauti to process, review, and potentially merge them within its interface.

The sf plauti duplicatecheck csv tojob command uses a CSV file to define exact record pairs for deduplication. Each row in the CSV represents one match — a source record and a matching record.

1. File Format

RequirementDescription
File type.csv (Comma-Separated Values)
DelimiterComma , by default — override with --delimiter
EncodingUTF-8 recommended

2. Required Columns

The CSV must include these two columns:

ColumnDescriptionExample
SourceIdThe main record you're evaluating for duplication0031x00000AbC123
MatchIdThe record that may be a duplicate of the SourceId0031x00000AbC124

Each row tells Plauti: “Compare SourceId with MatchId.”

3. Header Row

Make sure the first row includes headers exactly as shown: SourceId,MatchId.

4. Sample CSV

SourceId,MatchId
0031x00000AbC100,0031x00000AbC101
0031x00000AbC102,0031x00000AbC103
0031x00000AbC104,0031x00000AbC105