Incident API
You can list, get, create update and delete incidents using our API.
List Incidents
GET
https://api.statusentry.com/v1/incidents
This endpoint allows you to get your incidents.
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Authorization token |
Get Incident
GET
https://api.statusentry.com/v1/incidents/:id
This endpoint allows you to retrieve specific incident.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Incident ID |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Authorization Token |
Create Incident
POST
https://api.statusentry.com/v1/incidents
This endpoint allows you to create new incident.
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Authorization Token |
Request Body
Name | Type | Description |
---|---|---|
entry | object | Incident details |
incidentImpact | string | Impact of the incident. Default value: "none" Possible values: "none", "minor", "major", "critical" |
incidentStatus | string | Current status of the incident. Possible values: "investigating", "identified", "monitoring", "resolved" |
name | string | Incident message |
An incident entry request object takes following parameters:
Delete Incident
DELETE
https://api.statusentry.com/v1/incidents/:id
This endpoint allows you to delete an incident.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Incident ID |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Authorization Token |
Last updated