Skip to main content
Use the 2501-infra CLI to manage users, organizations, and tenants.

CLI Commands

CommandDescription
2501-infra tenantManage tenants
2501-infra orgManage organizations
2501-infra userManage users
For detailed options on any command:
2501-infra tenant -h
2501-infra org -h
2501-infra user -h

Initial Setup Workflow

After a fresh deployment, create entities in this order:

1. Create Tenant

2501-infra tenant create --name "My Company"
Note the returned tenant-id (e.g., ten_xxx).

2. Create Organization

2501-infra org create --name "Engineering" --tenant-id ten_xxx
Note the returned org-id (e.g., org_xxx).

3. Create Admin User

2501-infra user create \
  --email admin@company.com \
  --role ADMIN \
  --tenant-id ten_xxx \
  --org-id org_xxx

4. Access Command Center

Open your Command Center URL and login with the admin credentials.

User Roles

RoleDescription
ADMINFull access to all resources and user management
USERRead and write on org resources, read-only on shared resources
AUDITORRead-only access everywhere
See Users for detailed permission breakdowns.

Listing Entities

2501-infra tenant list
2501-infra org list
2501-infra user list