Skip to main content
Companies group your contacts under a shared organization. Link contacts and deals to companies to see the full picture of each account.

moss company list

List companies with optional filtering and pagination.
moss company list
moss company list --industry "SaaS" --tag enterprise
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
--industry <industry>NoFilter by industry
--tag <name>NoFilter by tag name

moss company show

Show details for a single company.
moss company show --id cmp_abc123
OptionRequiredDescription
--id <id>YesCompany ID

moss company create

Create a new company.
moss company create \
  --name "Acme Corp" \
  --domain "acme.com" \
  --industry "SaaS" \
  --size "50-200"
OptionRequiredDescription
--name <name>YesCompany name
--domain <domain>NoCompany domain
--industry <industry>NoIndustry
--size <size>NoCompany size
--notes <text>NoFree-text notes
--tags <tags>NoComma-separated tag names
--set <key=value>NoSet a custom field value (repeatable)

moss company create-batch

Create multiple companies from a JSON file. Each object in the array takes the same fields as moss company create.
moss company create-batch --file companies.json
cat companies.json | moss company create-batch --file -
OptionRequiredDescription
--file <path>YesPath to JSON file containing an array of company objects, or "-" for stdin

moss company update

Update an existing company.
moss company update --id cmp_abc123 --size "200-500"
OptionRequiredDescription
--id <id>YesCompany ID
--name <name>NoCompany name
--domain <domain>NoCompany domain
--industry <industry>NoIndustry
--size <size>NoCompany size
--notes <text>NoFree-text notes
--tags <tags>NoComma-separated tag names
--set <key=value>NoSet a custom field value (repeatable)

moss company delete

Delete a company permanently.
moss company delete --id cmp_abc123 --confirm
OptionRequiredDescription
--id <id>YesCompany ID
--confirmYesConfirm deletion (required for destructive operations)
This permanently deletes the company. This cannot be undone.