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



## OpenAPI

````yaml /api-reference/openapi.json get /incidents/{incident}/updates/{update}
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:8001/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
  - name: Subscribers
paths:
  /incidents/{incident}/updates/{update}:
    get:
      tags:
        - Incident Updates
      summary: Get Incident Update
      operationId: cachet.api.incidents.updates.show
      parameters:
        - name: incident
          in: path
          required: true
          description: The incident ID
          schema:
            type: integer
        - name: update
          in: path
          required: true
          description: The update ID
          schema:
            type: integer
        - name: include
          in: query
          schema:
            type: array
            items:
              type: string
              enum:
                - incident
                - incidentCount
                - incidentExists
          explode: false
      responses:
        '200':
          description: '`Update`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Update'
                  included:
                    type: array
                    items:
                      anyOf:
                        - $ref: '#/components/schemas/Incident'
                        - $ref: '#/components/schemas/Schedule'
                required:
                  - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
      security: []
components:
  schemas:
    Update:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - updates
        attributes:
          type: object
          properties:
            id:
              type: integer
            updateable_id:
              type: integer
            updateable_type:
              type: string
            message:
              type: string
            status:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                  enum:
                    - Investigating
                    - Identified
                    - Watching
                    - Fixed
                    - Reported
                    - null
                value:
                  type:
                    - integer
                    - 'null'
              required:
                - human
                - value
            created:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
            updated:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
          required:
            - id
            - updateable_id
            - updateable_type
            - message
            - created
            - updated
        relationships:
          type: object
          properties:
            incident:
              type: object
              properties:
                data:
                  anyOf:
                    - $ref: '#/components/schemas/IncidentIdentifier'
                    - type: 'null'
              required:
                - data
            schedule:
              type: object
              properties:
                data:
                  anyOf:
                    - $ref: '#/components/schemas/ScheduleIdentifier'
                    - type: 'null'
              required:
                - data
      required:
        - id
        - type
      title: Update
    Incident:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - incidents
        attributes:
          type: object
          properties:
            id:
              type: integer
            guid:
              type: string
            name:
              type: string
            message:
              type: string
            visible:
              $ref: '#/components/schemas/ResourceVisibilityEnum'
            stickied:
              type: boolean
            notifications:
              type: integer
            components_count:
              type: string
            status:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                value:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - value
            occurred:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
            created:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
            updated:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
          required:
            - id
            - guid
            - name
            - message
            - visible
            - stickied
            - notifications
            - status
            - occurred
            - created
            - updated
        relationships:
          type: object
          properties:
            components:
              type: object
              properties:
                data:
                  type: array
                  items:
                    $ref: '#/components/schemas/ComponentIdentifier'
              required:
                - data
            updates:
              type: object
              properties:
                data:
                  type: array
                  items:
                    $ref: '#/components/schemas/UpdateIdentifier'
              required:
                - data
            user:
              type: object
              properties:
                data:
                  anyOf:
                    - $ref: '#/components/schemas/UserIdentifier'
                    - type: 'null'
              required:
                - data
      required:
        - id
        - type
      title: Incident
    Schedule:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - schedules
        attributes:
          type: object
          properties:
            id:
              type: integer
            name:
              type: string
            message:
              type:
                - string
                - 'null'
            status:
              type: object
              properties:
                human:
                  type: string
                value:
                  type: string
              required:
                - human
                - value
            scheduled:
              type: object
              properties:
                human:
                  type: string
                string:
                  type: string
              required:
                - human
                - string
            completed:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
            created:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
            updated:
              type: object
              properties:
                human:
                  type:
                    - string
                    - 'null'
                string:
                  type:
                    - string
                    - 'null'
              required:
                - human
                - string
          required:
            - id
            - name
            - message
            - status
            - scheduled
            - completed
            - created
            - updated
        relationships:
          type: object
          properties:
            components:
              type: object
              properties:
                data:
                  type: array
                  items:
                    $ref: '#/components/schemas/ComponentIdentifier'
              required:
                - data
            updates:
              type: object
              properties:
                data:
                  type: array
                  items:
                    $ref: '#/components/schemas/UpdateIdentifier'
              required:
                - data
      required:
        - id
        - type
      title: Schedule
    IncidentIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - incidents
        id:
          type: string
      required:
        - type
        - id
      title: IncidentIdentifier
    ScheduleIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - schedules
        id:
          type: string
      required:
        - type
        - id
      title: ScheduleIdentifier
    ResourceVisibilityEnum:
      type: integer
      enum:
        - 0
        - 1
        - 2
      title: ResourceVisibilityEnum
    ComponentIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - components
        id:
          type: string
      required:
        - type
        - id
      title: ComponentIdentifier
    UpdateIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - updates
        id:
          type: string
      required:
        - type
        - id
      title: UpdateIdentifier
    UserIdentifier:
      type: object
      properties:
        type:
          type: string
        id:
          type: string
      required:
        - type
        - id
      title: UserIdentifier
  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

````