BlueForge Docs

forge org create

Create a new organisation (tenant) via CLI.

Command

forge org create <name> [--slug <slug>] [--region <region>]

Arguments

NameTypeRequiredNotes
name
stringyesDisplay name for the organisation

Flags

FlagTypeDefaultNotes
--slug
stringderivedAuto-derived from name if not provided
--region
enum
eu
eu
|
sea
|
us

Examples

Basic:

forge org create "My Company"
# → Created org "My Company" (slug: my-company)
# → Org ID: org_xxxxx

With custom slug:

forge org create "My Company" --slug my-corp --region us

Errors

Exit codeMeaning
0Created successfully
1Invalid input (name empty, bad region)
2Auth failure (no key, invalid key)
3Conflict (slug already in use)

Pitfalls

  • Slug uniqueness — slugs must be globally unique. Auto-derived slugs may collide; pass
    --slug
    explicitly if needed.
  • Org limits — Free plan: 1 org. Upgrade to create additional orgs.

See also

{auto-injected}

Tested against

{auto-injected}