Skip to main content
Manage organization members using the members command. List members, invite new members, and remove members from your organization.

Command Syntax

hopx members <subcommand> [options]

Subcommands

list

List all organization members. Syntax:
hopx members list [OPTIONS]
Examples:
# List members
hopx members list
Expected Output:
┌──────────────┬──────────────┬─────────────┐
│ Name         │ Email        │ Role        │
├──────────────┼──────────────┼─────────────┤
│ John Doe     │ john@ex.com  │ owner       │
│ Jane Smith   │ jane@ex.com  │ member      │
└──────────────┴──────────────┴─────────────┘
Exit Codes:
  • 0 - Success
  • 3 - Authentication error

invite

Invite a new member to the organization. Syntax:
hopx members invite EMAIL [OPTIONS]
Arguments:
  • EMAIL - Email address to invite (required)
Options:
  • --role TEXT - Member role: member, admin (default: member)
Examples:
# Invite member
hopx members invite user@example.com

# Invite as admin
hopx members invite admin@example.com --role admin
Expected Output:
✓ Invitation sent to user@example.com
Exit Codes:
  • 0 - Success
  • 3 - Authentication error

remove

Remove a member from the organization. Syntax:
hopx members remove EMAIL [OPTIONS]
Arguments:
  • EMAIL - Email address to remove (required)
Examples:
# Remove member
hopx members remove user@example.com
Expected Output:
✓ Member removed: user@example.com
Exit Codes:
  • 0 - Success
  • 3 - Authentication error
  • 4 - Member not found

Next Steps