Incident Templates
The Bearer API key of your user more info.
an integer specifying the starting point (beginning with 0) when paging through a list of entities
0the maximum number of results when paging through a list of entities.
50The incident templates
GET /api/incident-templates HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The incident templates
[
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}
]The Bearer API key of your user more info.
the incident status
The newly created incident template
POST /api/incident-templates HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 138
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}The newly created incident template
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}The Bearer API key of your user more info.
entity ID
The requested incident template
GET /api/incident-templates/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The requested incident template
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}The Bearer API key of your user more info.
entity ID
the incident status
The updated incident template
PUT /api/incident-templates/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 138
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}The updated incident template
{
"id": 1,
"name": "text",
"summary": "text",
"status": "INVESTIGATING",
"message": "text",
"sendNotification": true,
"teams": [
{
"id": 1,
"name": "text"
}
]
}The Bearer API key of your user more info.
entity ID
Empty body delete response
DELETE /api/incident-templates/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
Empty body delete response
No content
Last updated
Was this helpful?