rfctl orgs create#
Create a new organization in the CRM.
Synopsis#
rfctl orgs create [flags]Flags#
| Flag | Type | Required | Description |
|---|---|---|---|
--name | string | Yes | Organization name |
--domain | string | No | Organization domain |
--industry | string | No | Industry |
--status | string | No | Status (lead, customer, churned) |
--size | int | No | Organization size (number of employees) |
Examples#
Create with required field only#
rfctl orgs create --name "Acme Corp"Create with all fields#
rfctl orgs create \
--name "Acme Corp" \
--domain "acme.com" \
--industry "Technology" \
--status "lead" \
--size 150Output#
Returns JSON with the created organization:
{
"id": 1,
"name": "Acme Corp",
"domain": "acme.com",
"industry": "Technology",
"status": "lead",
"size": 150,
"created_at": "2024-01-15T10:30:00Z"
}Errors#
If the name is not provided:
Error: --name is required