User management
Add users to your organization
Prerequisites:- The person you want to invite must already have an Oso Cloud Developer account (GitHub or Google sign-in).
- Collect their GitHub username or Google Workspace email to add them.
Go to the Users tab in settings
Configure user roles
Oso Cloud supports two user roles: Member- Read access to all organization environments.
- Manage non-production environments.
- All Member permissions.
- Manage production environments.
- Invite/remove users.
- Change user roles.
Change a user’s role
New users default to Member role.Remove users
Remove users who leave your company or change teams:Environment management
Create new environments
Oso Cloud provides default environments, but you can create additional ones for specific use cases:Delete environments
Delete environments you no longer need:Go to the Environments tab
Note: Default environments cannot be deleted.
API key management
Create API keys
Create API keys for programmatic access to Oso Cloud:Navigate to the API Keys tab
- Use Copy to copy only the API key
- Use copy icons for environment variable commands
Revoke API keys
Revoke compromised or unused API keys:Go to the API Keys tab
- Compromised credentials
- Key rotation policies
- Cleanup of unused keys
Rate limiting
Oso Cloud enforces request limits on shared developer infrastructure to ensure consistent performance across all users.Understanding rate limits
Oso Cloud applies two concurrent limits to each environment: Overall Request Limit- Applies to all API requests
- Returns
429 Too Many Requestsif exceeded
- Applies specifically to fact additions and deletions
- Subset of overall requests with lower threshold
- Write operations count toward both limits
Handle rate limiting
Immediate response
When you receive429 Too Many Requests:
Rate limits reset automatically with no permanent impact on your account.
Optimize request patterns
Batch related operations Replace multiple individual requests with batch operations:- Atomic transactions for related facts
- Reduced API call volume
- Better performance
- Lower rate limit impact