LinuxCommandLibrary

pio-org

Manage PlatformIO organizations and their owners.

TLDR

Create a new organization

$ pio org create [organization_name]
copy


Delete an organization
$ pio org destroy [organization_name]
copy


Add a user to an organization
$ pio org add [organization_name] [username]
copy


Remove a user from an organization
$ pio org remove [organization_name] [username]
copy


List all organizations the current user is a member of and their owners
$ pio org list
copy


Update the name, email or display name of an organization
$ pio org update --orgname [new_organization_name] --email [new_email] --displayname [new_display_name] [organization_name]
copy

Copied to clipboard