> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cachethq.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Incident Template



## OpenAPI

````yaml api-reference/openapi.json get /incident-templates/{incidentTemplate}
openapi: 3.1.0
info:
  title: Cachet
  version: 0.0.1
  description: >-
    API documentation for Cachet, the open-source, self-hosted status page
    system.
servers:
  - url: http://localhost/api
  - url: https://v3.cachethq.io/api
    description: The Cachet v3 demo server.
security:
  - http: []
tags:
  - name: Cachet
  - name: Components
  - name: Component Groups
  - name: Incidents
  - name: Incident Updates
  - name: Incident Templates
  - name: Metrics
  - name: Metric Points
  - name: Schedules
  - name: Schedule Updates
paths:
  /incident-templates/{incidentTemplate}:
    get:
      tags:
        - Incident Templates
      summary: Get Incident Template
      operationId: cachet.api.incident-templates.show
      parameters:
        - name: incidentTemplate
          in: path
          required: true
          description: The incident template ID
          schema:
            type: integer
      responses:
        '200':
          description: '`IncidentTemplate`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/IncidentTemplate'
                required:
                  - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
      security: []
components:
  schemas:
    IncidentTemplate:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - incidentTemplates
        attributes:
          type: object
          properties:
            id:
              type: integer
            name:
              type: string
            slug:
              type: string
            template:
              type: string
            engine:
              $ref: '#/components/schemas/IncidentTemplateEngineEnum'
            created:
              type: object
              properties:
                human:
                  type: string
                string:
                  type: string
              required:
                - human
                - string
            updated:
              type: object
              properties:
                human:
                  type: string
                string:
                  type: string
              required:
                - human
                - string
          required:
            - id
            - name
            - slug
            - template
            - engine
            - created
            - updated
      required:
        - id
        - type
      title: IncidentTemplate
    IncidentTemplateEngineEnum:
      type: string
      enum:
        - blade
        - twig
      title: IncidentTemplateEngineEnum
  responses:
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````