Settings & API Keys
The Settings page at app.tensorify.io/settings controls your workspace configuration, team members, and API keys.
API keys authenticate the Tensorify CLI and any programmatic access to your workspace.
- Go to Settings → API Keys
- Click Create API Key
- Give it a descriptive name (e.g.,
ci-runner,local-dev,production-server) - Copy the key — it is only shown once
Set it as an environment variable before running CLI commands:
export TENSORIFY_API_KEY="your_key_here"
tensorify watch <workflowId>
To make it permanent, add it to your shell profile (~/.bashrc, ~/.zshrc).
- Treat your API key like a password — do not commit it to source control
- Create separate keys for each environment or machine (dev, CI, production)
- Delete keys you no longer use from the API Keys tab
On the API Keys tab, click the trash icon next to the key you want to remove. The key is immediately invalidated — any CLI process using it will fail authentication on its next request.
The People tab manages who has access to your workspace and what they can do.
| Role | Permissions |
|---|---|
| Owner | Full access — can delete the workspace, manage billing, and change any setting |
| Admin | Can manage members, create/delete workflows, manage API keys |
| Member | Can view and edit workflows, but cannot manage members or billing |
- Go to Settings → People
- Click Invite Member
- Enter their email address and select a role
- Click Send Invite
They will receive an email with a link to accept the invitation. The link expires after 7 days.
On the People tab, click the role badge next to a member's name to open the role selector. Changes take effect immediately.
Click the menu icon next to the member and select Remove from workspace. Their access is revoked immediately.
The General tab contains your workspace name and workspace ID.
The workspace ID (also called workspace slug) appears in your webhook URLs and is used internally for routing. It is set during onboarding and can be changed from the General tab.
Changing your workspace ID will change all your deployed webhook and API endpoint URLs. Any external services (GitHub, Stripe, etc.) pointing to the old URLs will stop working until you update them.
The Billing tab shows your current plan, usage, and payment methods. You can upgrade, downgrade, or cancel your plan from here.
To view CLI-accessible usage data, use:
tensorify usage
See the CLI Reference for details.
- Environment Variables — manage secrets and config for your workflows
- CLI Reference — how to use API keys with the CLI
