pydo.apps.delete()
Generated on 24 Apr 2025
from pydo
version
v0.10.0
Description
Delete an existing app. Once deleted, all active deployments will be permanently shut down and the app deleted. If needed, be sure to back up your app specification so that you may re-create it at a later time.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
id |
string | True | The ID of the app |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
delete_resp = client.apps.delete(id="b7d64052")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.