Skip to main content
Pull the full record for one person. The response is the same shape the dashboard People detail page renders: primary email and phone, company, job title, and the channels and events the person has joined.

Synopsis

Arguments

Examples

1. Inspect a person in the terminal

Prints a single-row table with the headline fields. Use --json if you need the nested company, channels, and events arrays.

2. Read one field with jq

Returns the primary email address as a raw string. primaryEmail is an object with email, type, and domain fields. Use .email to pull the address. Combine with other commands when you only need an identifier, for example, looking up an email before calling update.

3. Use inside a guard

The CLI exits non-zero on 404 so the guard above branches cleanly. See Exit codes for the full mapping.

Response

primaryEmail is an object with email, type, and domain fields. The full email list lives on emails. channels and events arrays are limited to the records the person currently belongs to. mergeOperations records every merge that produced this person; pass the entry’s id to person merge-undo to reverse one within the retention window.

See also