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

# Get Incident by ID

> Fetch a single incident by ID. Token must have 'Browse Events' or 'Manage Events' permission.



## OpenAPI

````yaml https://app.govworx.net/u/api-docs get /api/v1/external/mcp/resources/incidents/{incidentId}
openapi: 3.1.0
info:
  title: GovWorx Data API
  description: Interfaces to access data produced and organized by GovWorx Applications.
  termsOfService: http://swagger.io/terms/
  version: '1.0'
servers:
  - url: https://app.govworx.net
security: []
tags:
  - name: TRAIN
    description: Training Phase and Enrollment Records
  - name: Audit Log Export
    description: Programmatically pull audit records into your SIEM solution
  - name: Knowledge
    description: >-
      Push and version guide cards and instruction cards into GovWorx from
      external systems (e.g., APCO, PowerPhone, IAED). 


      ## Concepts


      **Knowledge entry:** A guide card or instruction card identified by a
      GovWorx-internal `id` and your partner-supplied `externalId`. Each entry
      carries one or more immutable versions.


      **Version:** An immutable snapshot of the guide card content created by
      `POST /` (create) or `POST /{knowledgeId}/versions` (append). Only one
      version is published (active) at a time.


      **Section ownership (`apiControl`):** A single top-level `apiControl`
      object on each request declares which sections are owned by the API and
      which are managed within GovWorx. API-owned sections are fully overwritten
      on every append. GovWorx-owned sections are editable inside GovWorx and
      carried forward automatically — do not include their content in append
      payloads. Flags are set once at creation and are immutable between
      versions.


      ## referenceId lifecycle


      GovWorx assigns a stable `referenceId` to every item in every content list
      on create. These identifiers are echoed back in the create/append
      response. **Store them.** On future appends, echo a `referenceId` to
      update the existing item in place. Omit the `referenceId` to add a new
      item (a fresh id is generated). Supplying an unknown `referenceId` — one
      not present in the previous version — is rejected (400).


      Reference id formats: `q-{8 hex}` (questions), `si-{8 hex}` (spoken
      instructions), `ca-{8 hex}` (CAD actions), `sms-{8 hex}` (SMS messages),
      `dt-{8 hex}` (dispatch triggers).


      ## Authentication


      All endpoints require a bearer token with the `Manage Knowledge`
      permission.
  - name: Incident
    description: Upload a new Incident to the system
  - name: MCP Resources
    description: MCP Resource endpoints for external integrations
  - name: Quality Assurance
    description: QA evaluation and feedback report endpoints
  - name: Users
    description: User Records
externalDocs:
  description: GovWorx Developer Docs
  url: https://api.govworx.ai
paths:
  /api/v1/external/mcp/resources/incidents/{incidentId}:
    get:
      tags:
        - MCP Resources
      summary: Get Incident by ID
      description: >-
        Fetch a single incident by ID. Token must have 'Browse Events' or
        'Manage Events' permission.
      operationId: getIncident
      parameters:
        - name: incidentId
          in: path
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/McpIncidentDto'
components:
  schemas:
    McpIncidentDto:
      type: object
      properties:
        id:
          type: integer
          format: int64
        number:
          type: string
        sysId:
          type: string
        caseNumber:
          type: string
        priority:
          type: string
        incidentType:
          type: string
        initialIncidentType:
          type: string
        initialLocation:
          type: string
        callerNumber:
          type: string
        callerName:
          type: string
        agency:
          type: string
        agencyType:
          type: string
        location:
          type: string
        latitude:
          type: string
        longitude:
          type: string
        responseArea:
          type: string
        disposition:
          type: string
        additionalContext:
          type: string
        callPosition:
          type: string
        callTakerId:
          type: string
        callTakerName:
          type: string
        callSource:
          type: string
        radioChannel:
          type: string
        incidentDate:
          type: string
          format: date-time
        dispatchQueueAt:
          type: string
          format: date-time
        callReceivedTime:
          type: string
          format: date-time
        callPickupTime:
          type: string
          format: date-time
        callHangupTime:
          type: string
          format: date-time
        closedAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        notes:
          type: array
          items:
            $ref: '#/components/schemas/McpIncidentNoteDto'
        responders:
          type: array
          items:
            $ref: '#/components/schemas/McpIncidentResponderDto'
        event:
          $ref: '#/components/schemas/McpEventReferenceDto'
    McpIncidentNoteDto:
      type: object
      properties:
        noteId:
          type: string
        note:
          type: string
        noteBy:
          type: string
        noteAt:
          type: string
          format: date-time
    McpIncidentResponderDto:
      type: object
      properties:
        personnelId:
          type: string
        personnelFirstName:
          type: string
        personnelLastName:
          type: string
        unitName:
          type: string
        dispatchedBy:
          type: string
        dispatchedAt:
          type: string
          format: date-time
        enrouteAt:
          type: string
          format: date-time
        arrivedAt:
          type: string
          format: date-time
        clearedAt:
          type: string
          format: date-time
    McpEventReferenceDto:
      type: object
      properties:
        id:
          type: integer
          format: int64
        number:
          type: string

````