pydo.apps.assign_alert_destinations()
Generated on 18 Jun 2025
from pydo
version
v0.11.0
Description
Updates the emails and slack webhook destinations for app alerts. Emails must be associated to a user with access to the app.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
app_id |
string | True | The app ID | |
alert_id |
string | True | The alert ID | |
body |
JSON or IO[bytes] | True |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
req = {
"emails": ["[email protected]"],
"slack_webhooks": [
{
"url": "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX",
"channel": "Channel Name",
}
],
}
post_resp = client.apps.assign_alert_destinations("12345", "24556", req)
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.