> ## 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.

# List Incident Templates



## OpenAPI

````yaml api-reference/openapi.json get /incident-templates
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:
    get:
      tags:
        - Incident Templates
      summary: List Incident Templates
      operationId: cachet.api.incident-templates.index
      parameters:
        - name: sort
          in: query
          description: >-
            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`.
          schema:
            type: string
        - name: per_page
          in: query
          description: How many items to show per page.
          schema:
            type: integer
            default: 15
          example: 20
        - name: page
          in: query
          description: Which page to show.
          schema:
            type: integer
          example: 2
        - name: filter[name]
          in: query
          description: Filter by name
          schema:
            type: string
          example: My Template
        - name: filter[slug]
          in: query
          description: Filter by slug
          schema:
            type: string
          example: my-template
      responses:
        '200':
          description: Paginated set of `IncidentTemplate`
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/IncidentTemplate'
                  links:
                    type: object
                    properties:
                      first:
                        type: string
                      last:
                        type: string
                      prev:
                        type: string
                      next:
                        type: string
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                      from:
                        type:
                          - integer
                          - 'null'
                      path:
                        type:
                          - string
                          - 'null'
                        description: Base path for paginator generated URLs.
                      per_page:
                        type: integer
                        description: Number of items shown per page.
                      to:
                        type:
                          - integer
                          - 'null'
                        description: Number of the last item in the slice.
                    required:
                      - current_page
                      - from
                      - path
                      - per_page
                      - to
                required:
                  - data
                  - links
                  - meta
      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
  securitySchemes:
    http:
      type: http
      scheme: bearer

````