talkvalue path person merge consolidates two duplicate person records into one. The source person’s emails, phones, channels, events, and activity history move into the target, and TalkValue retires the source ID. Prefer this over delete whenever you spot a duplicate. Attribution and event history from both records remain attached to the target.
Synopsis
Arguments
Options
Examples
1. Merge two duplicates
199 into person 142. The output is the target’s updated record, same shape as person get, so you can verify the merged email, phone, and channel set.
2. Inspect both before merging
3. Roll back a mistake
To reverse a merge, useperson merge-undo:
talkvalue path person get 142 --json | jq -r '.data.mergeOperations[0].id', or from the dashboard’s activity log.
Response
person get 199 after the merge return 404. mergeOperations is populated by person get; call it on the target when you need the operation ID.
See also
person get. Verify source and target before merging.person merge-undo. Reverse a merge.person activity.MERGEDentries record the source → target link.person delete. Prefer merge over delete for duplicates.- People. The dashboard surface for the same operation.
