Skip to main content

moss followup list

List follow-ups with optional filtering.
moss followup list
moss followup list --contact-id cnt_abc123 --status pending
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)
--type <type>NoFilter by type (call, email, meeting, task)
--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 task
--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
--description <text>NoDescription
--due-date <date>NoDue date (YYYY-MM-DD)
--status <status>NoStatus (pending, completed)

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
OptionRequiredDescription
--ids <ids>YesComma-separated follow-up IDs

moss followup delete

Delete a follow-up.
moss followup delete --id fu_abc123
OptionRequiredDescription
--id <id>YesFollow-up ID