Incident
The Incident resource provides details related to a vehicle crash event. It serves as the central entity that ties together various other resources, representing the core information associated with an incident.
Events
The following events are available for incidents:
| Event Type | Description |
|---|---|
incident.updated | Triggered when any incident information is modified |
The incident object
Attributes
- objectstring
Type of the incident, always "Incident".
- idstring
Unique identifier for the incident.
- reference_codestring
Reference code of the incident.
- incident_atstring
Date and time of the incident.
- created_by_entity_idstring
Entity ID of the creator of the incident.
- timezonestring
Timezone of the incident.
- typestring
Type of the incident.
- statusstring
Status of the incident.
- created_atDate
Date when the incident was created.
- updated_atDate
Date when the incident was last updated.
- case_idstring
Case ID of the incident.
Incident
interface Incident {
object: "Incident";
id: string;
reference_code: string;
incident_at: string;
created_by_entity_id: string;
timezone: string;
type: string;
status: string;
created_at: string;
updated_at: string;
case_id: string;
}
Table of Contents
