DemandFlow Support Centre

INCIDENT: Incident

ReferenceEntity Reference16/04/2026Updated 16/04/2026
An incident record with severity classification, root cause analysis, resolution tracking, and preventive actions.

INCIDENT: Incident

An incident record with severity classification, root cause analysis, resolution tracking, and preventive actions.

Default definition. This article describes the default INCIDENT definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches INCIDENT.

Entity properties

PropertyValue
Entity codeINCIDENT
Display nameIncident
PluralIncidents
Level55500

Use cases

INCIDENT is a more detailed event-tracking entity than ISSUE, designed for significant unplanned events requiring formal investigation and resolution. It is linked to projects via comboKey SUB|PJ. Key differentiators from ISSUE: severity levels with color coding (Critical/High/Medium/Low), separate occurred and discovered dates to track detection lag, multiselect impact areas (Schedule, Budget, Quality, Scope, Resources, Customer, Reputation, Compliance), and a full root cause analysis panel.

Fields

Incident Details

FieldTypeRequiredNotes
nametextYesIncident Title.
descriptiontext (multi-line)YesDescription.
incidentDatedateYesDate Occurred.
discoveredDatedateYesDate Discovered.
reporterreference → userYesReported By.
assignedToreference → userYesAssigned To.

Classification & Impact

FieldTypeRequiredNotes
severityenumYesValid ids: 1 (Critical), 2 (High), 3 (Medium), 4 (Low).
categoryenumYesValid ids: technical (Technical), operational (Operational), security (Security), process (Process), human_error (Human Error), external (External).
impactTypearray of enumsValid ids: 1 (Schedule), 2 (Budget), 3 (Quality), 4 (Scope), 5 (Resources), 6 (Customer), 7 (Reputation), 8 (Compliance).
affectedSystemstext (multi-line)Affected Systems/Components.
businessImpacttext (multi-line)Business Impact.

Status & Priority

FieldTypeRequiredNotes
statusenumYesValid ids: 1 (New), 2 (Investigating), 3 (In Progress), 4 (Resolved), 5 (Closed).
priorityenumYesValid ids: 1 (Immediate), 2 (High), 3 (Medium), 4 (Low).
estimatedCostnumberEstimated Cost Impact.
actualCostnumberActual Cost Impact.

Root Cause Analysis

FieldTypeRequiredNotes
rootCausetext (multi-line)Underlying cause of the incident
contributingFactorstext (multi-line)Contributing Factors.
timelinetext (multi-line)Chronological sequence of events

Resolution Actions

FieldTypeRequiredNotes
immediateActionstext (multi-line)Immediate Actions Taken.
resolutionActionstext (multi-line)Resolution Actions.
resolutionDatedatetimeResolution Date.
verificationDatedateWhen resolution was verified

Prevention Measures

FieldTypeRequiredNotes
preventiveActionstext (multi-line)Actions to prevent recurrence
processImprovementstext (multi-line)Process Improvements.
lessonsLearnedtext (multi-line)Lessons Learned.
communicationPlantext (multi-line)How lessons will be shared

Additional panels

  • Activity timeline panel attached.

Relationships

  • Lookups: reporter points at a user; assignedTo points at a user.

Creating a Incident via the API

POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json

{
  "entity":   "INCIDENT",
  "level":    55500,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "description": "...",
  "incidentDate": "2026-01-15",
  "discoveredDate": "2026-01-15"
}

Listing Incidents

# All records in your tenant
GET /v1/entities/INCIDENT/SUB:<your-sub-id>

See also

incidentincidents

Was this article helpful?

← Back to Knowledge Base