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
| Requirement | Description |
|---|---|
| File type | .csv (Comma-Separated Values) |
| Delimiter | Comma , by default — override with --delimiter |
| Encoding | UTF-8 recommended |
2. Required Columns
The CSV must include these two columns:
| Column | Description | Example |
|---|---|---|
SourceId | The main record you're evaluating for duplication | 0031x00000AbC123 |
MatchId | The record that may be a duplicate of the SourceId | 0031x00000AbC124 |
Each row tells Plauti: “Compare
SourceIdwithMatchId.”
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,0031x00000AbC105Updated 5 months ago