sf_find_duplicates_by_id {salesforcer} | R Documentation |
Find Duplicate Records By Id
Description
Performs rule-based searches for duplicate records.
Usage
sf_find_duplicates_by_id(
sf_id,
include_record_details = FALSE,
guess_types = TRUE,
verbose = FALSE
)
Arguments
sf_id |
|
include_record_details |
|
guess_types |
|
verbose |
|
Value
tbl_df
of records found to be duplicates by the match rules
Note
You must have active duplicate rules for the supplied object before running this function. This function uses the duplicate rules for the object that has the same type as the input record IDs. For example, if the record Id represents an Account, this function uses the duplicate rules associated with the Account object.
Examples
## Not run:
# use the duplicate rules associated with the object that this record
# belongs to in order to find duplicates
found_dupes <- sf_find_duplicates_by_id(sf_id = "00Q6A00000aABCnZZZ")
## End(Not run)