pydo.uptime.list_alerts()
Generated on 16 Jun 2025
from pydo
version
v0.11.0
Description
To list all of the alerts for an Uptime check, send a GET request to /v2/uptime/checks/$CHECK_ID/alerts
.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
check_id |
string | True | A unique identifier for a check. | |
per_page |
integer | False | Number of items returned per page | 20 |
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.uptime.check_alerts_list(check_id="4de7ac8b")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.