`heroku authorizations` ======================= OAuth authorizations * [`heroku authorizations`](#heroku-authorizations) * [`heroku authorizations:create`](#heroku-authorizationscreate) * [`heroku authorizations:destroy ID`](#heroku-authorizationsdestroy-id) * [`heroku authorizations:info ID`](#heroku-authorizationsinfo-id) * [`heroku authorizations:revoke ID`](#heroku-authorizationsrevoke-id) * [`heroku authorizations:rotate ID`](#heroku-authorizationsrotate-id) * [`heroku authorizations:update ID`](#heroku-authorizationsupdate-id) ## `heroku authorizations` list OAuth authorizations ``` USAGE $ heroku authorizations [--prompt] [-j] FLAGS -j, --json output in json format GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION list OAuth authorizations EXAMPLES $ heroku authorizations ``` _See code: [src/commands/authorizations/index.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/index.ts)_ ## `heroku authorizations:create` create a new OAuth authorization ``` USAGE $ heroku authorizations:create [--prompt] [-d ] [-e ] [-j] [-s ] [-S] FLAGS -S, --short only output token -d, --description= set a custom authorization -e, --expires-in= set expiration in seconds (default no expiration) -j, --json output in json format -s, --scope= set custom OAuth scopes GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION create a new OAuth authorization EXAMPLES $ heroku authorizations:create --description "For use with Anvil" ``` _See code: [src/commands/authorizations/create.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/create.ts)_ ## `heroku authorizations:destroy ID` revoke OAuth authorization ``` USAGE $ heroku authorizations:destroy ID [--prompt] ARGUMENTS ID ID of the authorization GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION revoke OAuth authorization ALIASES $ heroku authorizations:destroy EXAMPLES $ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb ``` ## `heroku authorizations:info ID` show an existing OAuth authorization ``` USAGE $ heroku authorizations:info ID [--prompt] [-j] ARGUMENTS ID ID of the authorization FLAGS -j, --json output in json format GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION show an existing OAuth authorization ``` _See code: [src/commands/authorizations/info.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/info.ts)_ ## `heroku authorizations:revoke ID` revoke OAuth authorization ``` USAGE $ heroku authorizations:revoke ID [--prompt] ARGUMENTS ID ID of the authorization GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION revoke OAuth authorization ALIASES $ heroku authorizations:destroy EXAMPLES $ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb ``` _See code: [src/commands/authorizations/revoke.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/revoke.ts)_ ## `heroku authorizations:rotate ID` updates an OAuth authorization token ``` USAGE $ heroku authorizations:rotate ID [--prompt] ARGUMENTS ID ID of the authorization GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION updates an OAuth authorization token ``` _See code: [src/commands/authorizations/rotate.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/rotate.ts)_ ## `heroku authorizations:update ID` updates an OAuth authorization ``` USAGE $ heroku authorizations:update ID [--prompt] [--client-id --client-secret ] [-d ] ARGUMENTS ID ID of the authorization FLAGS -d, --description= set a custom authorization description --client-id= identifier of OAuth client to set --client-secret= secret of OAuth client to set GLOBAL FLAGS --prompt interactively prompt for command arguments and flags DESCRIPTION updates an OAuth authorization ``` _See code: [src/commands/authorizations/update.ts](https://github.com/heroku/cli/blob/v11.10.0/src/commands/authorizations/update.ts)_