Skip to main content
Follow-ups are your to-do list for staying in touch. Schedule a call, email, meeting, or any other action tied to a contact, and track it through to completion.

moss followup list

List follow-ups with optional filtering.
moss followup list
moss followup list --contact-id cnt_abc123 --status pending
moss followup list --type call --overdue
OptionRequiredDescription
--page <n>NoPage number
--per-page <n>NoItems per page
--sort <field>NoSort field
--order <dir>NoSort order (asc or desc)
--contact-id <id>NoFilter by contact
--deal-id <id>NoFilter by deal
--status <status>NoFilter by status (pending, completed, skipped)
--type <type>NoFilter by type (call, email, meeting, other)
--overdueNoShow only overdue follow-ups
--due <date>NoFilter by due date (YYYY-MM-DD)

moss followup show

Show details for a single follow-up.
moss followup show --id fu_abc123
OptionRequiredDescription
--id <id>YesFollow-up ID

moss followup create

Create a new follow-up.
moss followup create \
  --contact-id cnt_abc123 \
  --type call \
  --description "Follow up on proposal" \
  --due-date 2026-02-15
OptionRequiredDescription
--contact-id <id>YesContact ID
--type <type>YesType: call, email, meeting, or other
--deal-id <id>NoAssociated deal ID
--description <text>NoDescription
--due-date <date>NoDue date (YYYY-MM-DD)

moss followup update

Update an existing follow-up.
moss followup update --id fu_abc123 --due-date 2026-02-20 --type email
OptionRequiredDescription
--id <id>YesFollow-up ID
--type <type>NoType: call, email, meeting, or other
--description <text>NoDescription
--due-date <date>NoDue date (YYYY-MM-DD)
--status <status>NoStatus (pending, completed, skipped)

moss followup complete

Mark a follow-up as completed.
moss followup complete --id fu_abc123
OptionRequiredDescription
--id <id>YesFollow-up ID

moss followup today

List follow-ups due today.
moss followup today
OptionRequiredDescription
--page <n>NoPage number
--per-page <n>NoItems per page

moss followup overdue

List overdue follow-ups.
moss followup overdue
OptionRequiredDescription
--page <n>NoPage number
--per-page <n>NoItems per page

moss followup bulk-complete

Complete multiple follow-ups at once.
moss followup bulk-complete --ids fu_a1,fu_b2,fu_c3 --confirm
OptionRequiredDescription
--ids <ids>YesComma-separated follow-up IDs
--confirmYesConfirm bulk operation (required)

moss followup delete

Delete a follow-up.
moss followup delete --id fu_abc123 --confirm
OptionRequiredDescription
--id <id>YesFollow-up ID
--confirmYesConfirm deletion (required for destructive operations)