Skip to main content

moss contact list

List contacts with optional filtering and pagination.
moss contact list
moss contact list --q "acme" --tag enterprise --page 2
OptionRequiredDescription
--page <n>NoPage number
--per-page <n>NoItems per page
--sort <field>NoSort field
--order <dir>NoSort order (asc or desc)
--q <query>NoFull-text search query
--company-id <id>NoFilter by company
--tag <name>NoFilter by tag name

moss contact show

Show details for a single contact.
moss contact show --id cnt_abc123
OptionRequiredDescription
--id <id>YesContact ID

moss contact create

Create a new contact.
moss contact create \
  --first-name "Jane" \
  --last-name "Smith" \
  --email "[email protected]" \
  --title "CTO" \
  --company-id cmp_abc123
OptionRequiredDescription
--first-name <name>YesFirst name
--last-name <name>NoLast name
--email <email>NoEmail address
--phone <phone>NoPhone number
--title <title>NoJob title
--linkedin-url <url>NoLinkedIn profile URL
--company-id <id>NoAssociated company ID
--notes <text>NoFree-text notes
--tags <tags>NoComma-separated tag names
--set <key=value>NoSet a custom field value (repeatable)

moss contact update

Update an existing contact. Only specified fields are changed.
moss contact update --id cnt_abc123 --title "VP Engineering"
OptionRequiredDescription
--id <id>YesContact ID
--first-name <name>NoFirst name
--last-name <name>NoLast name
--email <email>NoEmail address
--phone <phone>NoPhone number
--title <title>NoJob title
--linkedin-url <url>NoLinkedIn profile URL
--company-id <id>NoAssociated company ID
--notes <text>NoFree-text notes
--tags <tags>NoComma-separated tag names
--set <key=value>NoSet a custom field value (repeatable)

moss contact delete

Delete a contact.
moss contact delete --id cnt_abc123
OptionRequiredDescription
--id <id>YesContact ID
Search contacts by name, email, or notes using full-text search.
moss contact search --q "jane smith"
OptionRequiredDescription
--q <query>YesSearch query
--page <n>NoPage number
--per-page <n>NoItems per page

moss contact merge

Merge two contacts. The source contact’s data is merged into the target, and the source is deleted.
moss contact merge --source-id cnt_abc123 --target-id cnt_def456
OptionRequiredDescription
--source-id <id>YesSource contact ID (will be deleted)
--target-id <id>YesTarget contact ID (will be kept)