Incident API
You can list, get, create update and delete incidents using our API.
get
https://api.statusentry.com
/v1/incidents
List Incidents
get
https://api.statusentry.com/
v1/incidents/:id
Get Incident
post
https://api.statusentry.com/
v1/incidents
Create Incident
An incident entry request object takes following parameters:
"entry":
{
"message": "We are investigating a problem in our signup flow. We will provide an update as soon as we have more information or within 10 minutes.",
"date": "1609681547", // epoch time in millis
"incidentStatus": "investigating",
"affectedComponents": [ // Optional
{
"componentId": "fb5e3cdc-4550-47d9-a96d-287c987f2ba02",
"componentStatus": "degraded_performance"
}
],
"sendNotification": true // Optional, default true
}
delete
https://api.statusentry.com/
v1/incidents/:id
Delete Incident