rfctl orgs list#

List all organizations with optional filtering.

Synopsis#

rfctl orgs list [flags]

Flags#

FlagTypeDefaultDescription
--statusstringFilter by status (lead, customer, churned)
--searchstringSearch by name, domain, or industry
--limitint50Maximum number of results
--offsetint0Number of results to skip

Examples#

List all organizations#

rfctl orgs list

Filter by status#

rfctl orgs list --status customer

Search organizations#

rfctl orgs list --search "Technology"

Pagination#

rfctl orgs list --limit 10 --offset 20

Output#

Returns JSON array of organizations:

[
  {
    "id": 1,
    "name": "Acme Corp",
    "domain": "acme.com",
    "industry": "Technology",
    "status": "customer",
    "size": 150,
    "created_at": "2024-01-15T10:30:00Z"
  }
]