`heroku accounts` ================= list the Heroku accounts in your cache * [`heroku accounts`](#heroku-accounts) * [`heroku accounts:add NAME`](#heroku-accountsadd-name) * [`heroku accounts:current`](#heroku-accountscurrent) * [`heroku accounts:remove NAME`](#heroku-accountsremove-name) * [`heroku accounts:set NAME`](#heroku-accountsset-name) ## `heroku accounts` list the Heroku accounts in your cache ``` USAGE $ heroku accounts DESCRIPTION list the Heroku accounts in your cache EXAMPLES $ heroku accounts ``` _See code: [src/commands/accounts/index.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/accounts/index.ts)_ ## `heroku accounts:add NAME` add the current Heroku account to your accounts cache ``` USAGE $ heroku accounts:add NAME [--prompt] ARGUMENTS NAME alias for Heroku account to add GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION add the current Heroku account to your accounts cache EXAMPLES $ heroku accounts:add my-account ``` _See code: [src/commands/accounts/add.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/accounts/add.ts)_ ## `heroku accounts:current` display the current Heroku account ``` USAGE $ heroku accounts:current DESCRIPTION display the current Heroku account EXAMPLES $ heroku accounts:current ``` _See code: [src/commands/accounts/current.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/accounts/current.ts)_ ## `heroku accounts:remove NAME` remove a Heroku account from your cache ``` USAGE $ heroku accounts:remove NAME [--prompt] ARGUMENTS NAME name of Heroku account to remove GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION remove a Heroku account from your cache EXAMPLES $ heroku accounts:remove my-account ``` _See code: [src/commands/accounts/remove.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/accounts/remove.ts)_ ## `heroku accounts:set NAME` set the current Heroku account from your accounts cache ``` USAGE $ heroku accounts:set NAME [--prompt] ARGUMENTS NAME name or username of account to set GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION set the current Heroku account from your accounts cache EXAMPLES $ heroku accounts:set my-account ``` _See code: [src/commands/accounts/set.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/accounts/set.ts)_