tenderly whoami command displays information about your currently authenticated Tenderly account, helping you verify your login status and account details.
Usage
Prerequisites
You must be logged in to use this command. Run
tenderly login if you haven’t authenticated yet.Output
The command displays different information depending on your account type:User Account
Organization Account
Information Displayed
Your unique Tenderly account identifier.This ID is used internally to reference your account in API calls and configurations.
Your account email address.Displayed for: User accounts only (not organization accounts)
The name of your organization.Displayed for: Organization accounts only (not user accounts)
Your Tenderly username.This may be empty for some legacy accounts. Both user and organization accounts can have usernames.
Examples
Check Current Login Status
Verify Organization Login
Use Cases
Verify Authentication
After logging in, confirm your session:Check Active Account
When working with multiple accounts, verify which one is active:Debugging Configuration Issues
If commands fail, verify your authentication status:CI/CD Pipeline Verification
In automated environments, verify the service account:Behavior
Check Login Status
The command first verifies you’re logged in. If not authenticated, you’ll be prompted to run
tenderly login.Error Scenarios
Not Logged In
tenderly login
Failed to Fetch User Information
- Outdated CLI version
- Network connectivity issues
- Invalid or expired access key
- API service disruption
- Update the CLI:
tenderly update - Re-authenticate:
tenderly login --force - Check network connectivity
Invalid Access Key
If your access key has been revoked or expired:Account Types
Tenderly supports two principal types:User Principal
- Type: Individual user account
- Shows: Email address
- Use case: Personal development, individual projects
Organization Principal
- Type: Organization/team account
- Shows: Organization name
- Use case: Team collaboration, shared projects
When logged in with an organization account, projects may be shared across team members. The organization name is used when referencing shared projects.
Programmatic Usage
For scripts that need to extract account information:Related Commands
tenderly login- Authenticate with Tenderlytenderly logout- Log out of your current sessiontenderly init- Initialize a project (requires authentication)