GetDowntime
Retrieve downtime details by specifying a downtime ID, including related resources like monitor or creator, through the Datadog MCP Server API. Simplify downtime tracking and analysis.
Instructions
Get downtime detail by downtime_id.
Path Parameters:
downtime_id (Required): ID of the downtime to fetch.
Query Parameters:
include: Comma-separated list of resource paths for related resources to include in the response. Supported resource paths are
created_byandmonitor.
Responses:
200 (Success): OK
Content-Type:
application/jsonResponse Properties:
included: Array of objects related to the downtime that the user requested.
Example:
{
"data": "unknown_type",
"included": [
"unknown_type"
]
}400: Bad Request
Content-Type:
application/jsonResponse Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}403: Forbidden
Content-Type:
application/jsonResponse Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}404: Not Found
Content-Type:
application/jsonResponse Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}429: Too many requests
Content-Type:
application/jsonResponse Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| downtime_id | Yes | ID of the downtime to fetch. | |
| include | No | Comma-separated list of resource paths for related resources to include in the response. Supported resource paths are `created_by` and `monitor`. |