We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9abd7 commit e8a3869Copy full SHA for e8a3869
lib/platform/apps.js
@@ -54,4 +54,13 @@ module.exports = class Apps extends Base {
54
addTags(id, data) {
55
return this.st.client.request(`apps/${id}/tags`, 'PATCH', data)
56
}
57
+
58
+ /**
59
+ * Delete an app.
60
+ * @param appNameOrId The appName or id field of an app.
61
+ * @return 200 response code on successful delete.
62
+ **/
63
+ delete(appNameOrId) {
64
+ return this.st.client.request(`/apps/${appNameOrId}`, 'DELETE')
65
+ }
66
0 commit comments