akili tenant
Manage tenants on the Akili platform. Every resource in the platform belongs to a tenant. Tenants provide isolation boundaries for data products, connections, and all associated resources.
Commands
Section titled “Commands”akili tenant list
Section titled “akili tenant list”List all tenants.
Examples:
# List all tenantsakili tenant list
# List as JSONakili tenant list --jsonakili tenant get <id>
Section titled “akili tenant get <id>”Show detailed information about a specific tenant.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tenant ID |
Examples:
# Get tenant detailsakili tenant get abc-123
# Get as JSONakili tenant get abc-123 --jsonakili tenant create <slug>
Section titled “akili tenant create <slug>”Create a new tenant.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
slug | string | yes | Tenant slug (unique identifier, used in URLs and paths) |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--display-name | slug value | Human-readable display name | |
--tier | standard | Tenant tier: standard, premium, or enterprise |
Examples:
# Create a tenant with defaultsakili tenant create acme-corp
# Create with display name and tierakili tenant create acme-corp \ --display-name "Acme Corporation" \ --tier enterpriseakili tenant update <id>
Section titled “akili tenant update <id>”Update an existing tenant. Only provided fields are updated.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tenant ID |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--display-name | New display name | ||
--tier | New tier |
Examples:
# Update display nameakili tenant update abc-123 --display-name "Acme Corp International"
# Upgrade tierakili tenant update abc-123 --tier premiumakili tenant suspend <id>
Section titled “akili tenant suspend <id>”Suspend a tenant. Suspended tenants cannot run products or access data. Requires the --confirm flag.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tenant ID |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--confirm | false | Confirm the suspension (required) |
Examples:
# Suspend a tenantakili tenant suspend abc-123 --confirmakili tenant reactivate <id>
Section titled “akili tenant reactivate <id>”Reactivate a previously suspended tenant.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tenant ID |
Examples:
# Reactivate a suspended tenantakili tenant reactivate abc-123akili tenant archive <id>
Section titled “akili tenant archive <id>”Archive (soft-delete) a tenant. Archived tenants are no longer accessible but data is retained. Requires the --confirm flag.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Tenant ID |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--confirm | false | Confirm the archive operation (required) |
Examples:
# Archive a tenantakili tenant archive abc-123 --confirm