actionxm organizations
Manage your organization settings. Alias: actionxm org.
actionxm organizations view
View your organization details.
bash
actionxm organizations viewExample:
bash
$ actionxm organizations view
Name: Acme Corp
Slug: acme-corp
ID: a1b2c3d4-...Exit codes:
0— Organization details displayed1— Not authenticated, insufficient permissions, or API error
actionxm organizations edit
Edit your organization name and/or slug.
bash
actionxm organizations edit [--name <name>] [--slug <slug>]Options:
| Flag | Description |
|---|---|
--name <name> | New organization name |
--slug <slug> | New organization slug (must be globally unique) |
At least one of --name or --slug must be provided.
Validation:
- Slug must be globally unique across all organizations
- Slug must be lowercase alphanumeric with hyphens (e.g.,
acme-corp) - Slug must be at least 2 characters
Example:
bash
$ actionxm organizations edit --name "Acme Inc" --slug acme-inc
✓ Organization updated: Acme Inc
Name: Acme Inc
Slug: acme-incTIP
If the slug is already taken, you will receive a "Slug is not available" error. Choose a different slug.
Exit codes:
0— Organization updated successfully1— Slug conflict, validation error, insufficient permissions, or API error