Retrieve information about an app deployment.
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
app_id |
string | True | The app ID | |
deployment_id |
string | True | The deployment ID |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
get_resp = client.apps.get_deployment(app_id="a6adf840", deployment_id="b6bdf840")
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.