let dedupePropValue = contactResult.body.properties[DEDUPE_PROPERTY]; should be let dedupePropValue = contactResult.properties[DEDUPE_PROPERTY]; ---- let idsToMerge = searchResults.body.results should be let idsToMerge = searchResults.results
let dedupePropValue = contactResult.body.properties[DEDUPE_PROPERTY];
should be
let dedupePropValue = contactResult.properties[DEDUPE_PROPERTY];
let idsToMerge = searchResults.body.results
should be
let idsToMerge = searchResults.results