Console
Settings
Local application settings and browser preferences.
Settings
Organization Settings
Navigate to Settings (/settings) to manage your organization:
- Organization name and details
- Member management (if supported by your IdP)
Service Accounts
Navigate to Integrations → Service Accounts (/integrations/service-accounts) to manage machine users:
Creating a Service Account
- Click New Service Account
- Enter a name (e.g. "CI/CD", "Backend API")
- Click Create
Managing Tokens
- Click on a service account
- Click Generate Token
- Set a name and select scopes
- Copy the generated
ksh_*token (shown only once)
Revoking Tokens
Click on a token to delete it. The token is immediately invalidated.
API Equivalent
| Action | Endpoint |
|---|---|
| Create Service Account | POST /api/service-accounts |
| List Service Accounts | GET /api/service-accounts |
| Generate Token | POST /api/service-accounts/{id}/tokens |
| Delete Token | DELETE /api/service-accounts/{saId}/tokens/{tokenId} |

