API Documentation
Components
Component Groups
Incident Updates
Incident Templates
Incident Templates
Get Incident Template
GET
/
incident-templates
/
{incidentTemplate}
Copy
Ask AI
curl --request GET \
--url http://localhost/api/incident-templates/{incidentTemplate}
Copy
Ask AI
{
"data": {
"id": "<string>",
"type": "incidentTemplates",
"attributes": {
"id": 123,
"name": "<string>",
"slug": "<string>",
"template": "<string>",
"engine": "blade",
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
}
Path Parameters
The incident template ID
Response
200
application/json
IncidentTemplate
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url http://localhost/api/incident-templates/{incidentTemplate}
Copy
Ask AI
{
"data": {
"id": "<string>",
"type": "incidentTemplates",
"attributes": {
"id": 123,
"name": "<string>",
"slug": "<string>",
"template": "<string>",
"engine": "blade",
"created": {
"human": "<string>",
"string": "<string>"
},
"updated": {
"human": "<string>",
"string": "<string>"
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.