Delete an app
DELETE/apps/{name}
Removes the app and tears down its instance on the next reconcile.
path parameters
object
namestringrequiredApp name (a DNS label, e.g. web).
Responses
204 No contentNo Content
404 Not foundNot Found
ErrorResponse
errorstring501 Not Implemented
ErrorResponse
errorstringAuthentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.Request
▍DELETE/apps/{name}
curl '/apps/{name}' \
-X DELETEconst response = await fetch("/apps/{name}", {
method: "DELETE",
});
const data = await response.json();import requests
response = requests.delete(
"/apps/{name}",
)
data = response.json()Response
204 No content
No response body.