Post an update on a Status Page incident.
This is the endpoint to use when resolving an incident - set incident_status to “resolved” to end the incident. There is a limit of 100 updates per incident.
This endpoint requires an API key with the “Create status page incidents, maintenance windows and publish updates” scope.
Markdown update on what's changed about this status page incident
4096"The fix has been deployed and we are monitoring the situation. Some users may still experience intermittent issues."
Whether to notify subscribers about this incident update. This will not work if your status page has more than 1000 subscribers.
true
ID of the status page incident
"01FCNDV6P870EA6S7TK1DSYDG1"
An array of mappings from component ID to component status. This must not be set if the status page incident status is being set to "resolved", as all components statuses will update to "operational".
[
{
"component_id": "01FCNDV6P870EA6S7TK1DSYDG2",
"component_status": "operational"
}
]Optional new status for this status page incident. If not provided, the status will remain unchanged. Setting to "resolved" will end the incident and all component statuses will update to "operational".
investigating, identified, monitoring, resolved "investigating"
Created response.
{
"component_statuses": [
{
"component_id": "01FCNDV6P870EA6S7TK1DSYDG2",
"component_status": "operational"
}
],
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"incident_status": "investigating",
"message": "abc123",
"published_at": "2021-08-17T13:28:57.801578Z",
"status_page_incident_id": "01FCNDV6P870EA6S7TK1DSYDG1"
}