- CLI Reference
- Commands
- ironflow org
ironflow org
Manage organizations. Create, list, get, and delete organizations.
ironflow org <subcommand> [flags]Subcommands:
| Subcommand | Description |
|---|---|
create | Create a new organization |
list | List all organizations |
get | Get organization details |
delete | Delete an organization |
ironflow org create
Section titled “ironflow org create”Create a new organization with the given name.
ironflow org create <name> [flags]Arguments:
| Argument | Required | Description |
|---|---|---|
name | Yes | Name for the new organization |
Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--server | -s | string | Server URL override |
Examples:
ironflow org create my-orgironflow org create my-org --server http://localhost:9000ironflow org list
Section titled “ironflow org list”List all organizations with their IDs, names, and creation dates.
ironflow org list [flags]Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--json | bool | false | Output as JSON | |
--server | -s | string | Server URL override |
Output:
ID NAME CREATEDorg_abc123 my-org 2026-01-01T00:00:00ZExamples:
ironflow org listironflow org list --jsonironflow org get
Section titled “ironflow org get”Get detailed information about an organization.
ironflow org get <id> [flags]Arguments:
| Argument | Required | Description |
|---|---|---|
id | Yes | Organization ID to query |
Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--json | bool | false | Output as JSON | |
--server | -s | string | Server URL override |
Output:
ID: org_abc123Name: my-orgCreated At: 2026-01-01T00:00:00ZUpdated At: 2026-01-15T12:00:00ZExamples:
ironflow org get org_abc123ironflow org get org_abc123 --jsonironflow org delete
Section titled “ironflow org delete”Delete an organization by its ID.
ironflow org delete <id> [flags]Arguments:
| Argument | Required | Description |
|---|---|---|
id | Yes | Organization ID to delete |
Flags:
| Flag | Short | Type | Default | Description |
|---|---|---|---|---|
--server | -s | string | Server URL override |
Examples:
ironflow org delete org_abc123