Skip to main content
talkvalue path person activity lists the change log for one person. Every create, update, delete, merge, restore, and source connect / disconnect shows up here, with the actor who triggered it, the fields that changed, and (for source events) the channel or event the change came from. Pagination is cursor-based. The CLI prints a Next page: --cursor <id> hint on stderr whenever more rows exist.

Synopsis

Arguments

Options

Examples

1. Recent activity in the terminal

Prints ID, action, actor, and created-at columns for the most recent page. Read the stderr hint to fetch the next page.

2. Walk every page until exhausted

The loop reads JSON pages on stdout and parses the Next page: --cursor <id> hint from stderr. See Scripting with jq for more patterns.

3. Audit a merge

Pulls only the MERGED entries. Each one carries mergedFrom.personId and mergedFrom.primaryEmail so you can trace the source that was absorbed.

Response

action is one of CREATED, UPDATED, DELETED, RESTORED, MERGED, UNMERGED, SOURCE_CONNECTED, or SOURCE_DISCONNECTED. The presence of changes, source, and mergedFrom depends on the action. Read person update and person merge for the shapes they emit. When more pages exist, look for Next page: --cursor <n> on stderr and replay with that cursor.

See also