Incident Templates
List Incident Templates
API Documentation
Components
Component Groups
Incident Updates
Incident Templates
MetricPoint
Incident Templates
List Incident Templates
GET
/
incident-templates
curl --request GET \
--url http://localhost/api/incident-templates
{
"data": [
{
"id": "<string>",
"type": "incidentTemplates",
"attributes": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"template": "<string>",
"engine": "<string>",
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
],
"meta": {
"current_page": 123,
"from": 123,
"path": "<string>",
"per_page": 123,
"to": 123
},
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
}
}
Query Parameters
Available sorts are name
, slug
, id
. You can sort by multiple options by separating them with a comma. To sort in descending order, use -
sign in front of the sort, for example: -name
.
Filter by name
Filter by slug
How many items to show per page.
Which page to show.
Response
200 - application/json
Paginated set of `IncidentTemplate`
Available options:
incidentTemplates
curl --request GET \
--url http://localhost/api/incident-templates
{
"data": [
{
"id": "<string>",
"type": "incidentTemplates",
"attributes": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"template": "<string>",
"engine": "<string>",
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
],
"meta": {
"current_page": 123,
"from": 123,
"path": "<string>",
"per_page": 123,
"to": 123
},
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
}
}