LinuxCommandLibrary

pio-account

Manage your PlatformIO account in the command line.

TLDR

Register a new PlatformIO account

$ pio account register --username [username] --email [email] --password [password] --firstname [firstname] --lastname [lastname]
copy


Permanently delete your PlatformIO account and related data
$ pio account destroy
copy


Log in to your PlatformIO account
$ pio account login --username [username] --password [password]
copy


Log out of your PlatformIO account
$ pio account logout
copy


Update your PlatformIO profile
$ pio account update --username [username] --email [email] --firstname [firstname] --lastname [lastname] --current-password [password]
copy


Show detailed information about your PlatformIO account
$ pio account show
copy


Reset your password using your username or email
$ pio account forgot --username [username_or_email]
copy

Copied to clipboard