CLI to manage Heroku Organizations
npm install @heroku-cli/plugin-orgs-v5Heroku Orgs CLI 
===========




https://github.com/heroku/heroku-orgs/blob/master/index.js.
First, please read Developing CLI Plugins on Heroku's DevCenter.
#### Run Tests
```
$ npm test
#### Deploy
1. Release a new version of this npm package.
``
$ npm version patch/minor/major
2. Open a new pr in https://github.com/heroku/cli/blob/master/package.json, updating to the appropriate heroku-orgs version.
#### Commands
* heroku access
* heroku access:add EMAIL
* heroku access:remove EMAIL
* heroku access:update EMAIL
* heroku apps:join
* heroku apps:leave
* heroku apps:lock
* heroku apps:transfer RECIPIENT
* heroku apps:unlock
* heroku join
* heroku leave
* heroku lock
* heroku members
* heroku members:add EMAIL
* heroku members:remove EMAIL
* heroku members:set EMAIL
* heroku orgs
* heroku orgs:open
* heroku teams
* heroku unlock
list who has access to an app
`
USAGE
$ heroku access -a
FLAGS
-a, --app=
-r, --remote=
--json output in json format
DESCRIPTION
list who has access to an app
`
add new users to your app
`
USAGE
$ heroku access:add EMAIL -a
FLAGS
-a, --app=
-p, --permissions=
-r, --remote=
DESCRIPTION
add new users to your app
EXAMPLES
$ heroku access:add user@email.com --app APP # add a collaborator to your app
$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated
`
remove users from a team app
`
USAGE
$ heroku access:remove EMAIL -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
remove users from a team app
EXAMPLES
$ heroku access:remove user@email.com --app APP
`
update existing collaborators on an team app
`
USAGE
$ heroku access:update EMAIL -a
FLAGS
-a, --app=
-p, --permissions=
-r, --remote=
DESCRIPTION
update existing collaborators on an team app
EXAMPLES
$ heroku access:update user@email.com --app APP --permissions deploy,manage,operate
`
add yourself to a team app
`
USAGE
$ heroku apps:join -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
add yourself to a team app
`
remove yourself from a team app
`
USAGE
$ heroku apps:leave -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
remove yourself from a team app
`
prevent team members from joining an app
`
USAGE
$ heroku apps:lock -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
prevent team members from joining an app
`
transfer applications to another user or team
`
USAGE
$ heroku apps:transfer RECIPIENT [-l] [--bulk] [-a
ARGUMENTS
RECIPIENT user or team to transfer applications to
FLAGS
-a, --app=
-l, --locked lock the app upon transfer
-r, --remote=
--bulk transfer applications in bulk
DESCRIPTION
transfer applications to another user or team
EXAMPLES
$ heroku apps:transfer collaborator@example.com
Transferring example to collaborator@example.com... done
$ heroku apps:transfer acme-widgets
Transferring example to acme-widgets... done
$ heroku apps:transfer --bulk acme-widgets
...
`
unlock an app so any team member can join
`
USAGE
$ heroku apps:unlock -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
unlock an app so any team member can join
`
add yourself to a team app
`
USAGE
$ heroku join -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
add yourself to a team app
`
remove yourself from a team app
`
USAGE
$ heroku leave -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
remove yourself from a team app
`
prevent team members from joining an app
`
USAGE
$ heroku lock -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
prevent team members from joining an app
`
list members of a team
`
USAGE
$ heroku members [-r
FLAGS
-r, --role=
-t, --team=
--json output in json format
--pending filter by pending team invitations
DESCRIPTION
list members of a team
`
adds a user to a team
`
USAGE
$ heroku members:add EMAIL -r
FLAGS
-r, --role=
-t, --team=
DESCRIPTION
adds a user to a team
`
removes a user from a team
`
USAGE
$ heroku members:remove EMAIL [-t
FLAGS
-t, --team=
DESCRIPTION
removes a user from a team
`
sets a members role in a team
`
USAGE
$ heroku members:set EMAIL -r
FLAGS
-r, --role=
-t, --team=
DESCRIPTION
sets a members role in a team
`
list the teams that you are a member of
`
USAGE
$ heroku orgs [--json] [--enterprise]
FLAGS
--enterprise filter by enterprise teams
--json output in json format
DESCRIPTION
list the teams that you are a member of
`
open the team interface in a browser window
`
USAGE
$ heroku orgs:open [-t
FLAGS
-t, --team=
DESCRIPTION
open the team interface in a browser window
`
list the teams that you are a member of
`
USAGE
$ heroku teams [--json]
FLAGS
--json output in json format
DESCRIPTION
list the teams that you are a member of
Use heroku members:* to manage team members.
`
unlock an app so any team member can join
`
USAGE
$ heroku unlock -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
unlock an app so any team member can join
``