Skip to main content
Manage your user profile using the profile command. View and update your profile information.

Command Syntax

hopx profile <subcommand> [options]

Subcommands

info

Get user profile information. Syntax:
hopx profile info [OPTIONS]
Examples:
# Get profile info
hopx profile info
Expected Output:
┌─────────────┬─────────────────────────────────────┐
│ Property    │ Value                               │
├─────────────┼─────────────────────────────────────┤
│ Name        │ John Doe                            │
│ Email       │ john@example.com                    │
│ User ID     │ user_abc123                         │
│ Created     │ 2025-01-01                          │
└─────────────┴─────────────────────────────────────┘
Exit Codes:
  • 0 - Success
  • 3 - Authentication error

update

Update user profile information. Syntax:
hopx profile update [OPTIONS]
Options:
  • --name TEXT - Full name
  • --email TEXT - Email address
Examples:
# Update profile name
hopx profile update --name "Jane Doe"

# Update email
hopx profile update --email "jane@example.com"
Expected Output:
✓ Profile updated
Exit Codes:
  • 0 - Success
  • 3 - Authentication error

Next Steps