rfctl orgs list#
List all organizations with optional filtering.
Synopsis#
rfctl orgs list [flags]Flags#
| Flag | Type | Default | Description |
|---|---|---|---|
--status | string | Filter by status (lead, customer, churned) | |
--search | string | Search by name, domain, or industry | |
--limit | int | 50 | Maximum number of results |
--offset | int | 0 | Number of results to skip |
Examples#
List all organizations#
rfctl orgs listFilter by status#
rfctl orgs list --status customerSearch organizations#
rfctl orgs list --search "Technology"Pagination#
rfctl orgs list --limit 10 --offset 20Output#
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"
}
]