heroku-client
Version:
A wrapper for the Heroku v3 API
47 lines (28 loc) • 664 B
Markdown
app
An app represents the program that you would like to deploy and run on Heroku.
# Actions
## `create`
`heroku.apps().create({attributes}, {callback});`
Method | Path
--- | ---
POST | /apps
## `delete`
`heroku.apps({app_id_or_name}).delete({callback});`
Method | Path
--- | ---
DELETE | /apps/{app_id_or_name}
## `info`
`heroku.apps({app_id_or_name}).info({callback});`
Method | Path
--- | ---
GET | /apps/{app_id_or_name}
## `list`
`heroku.apps().list({callback});`
Method | Path
--- | ---
GET | /apps
## `update`
`heroku.apps({app_id_or_name}).update({attributes}, {callback});`
Method | Path
--- | ---
PATCH | /apps/{app_id_or_name}