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 TypeDescription
incident.updatedTriggered when any incident information is modified

The incident object

Attributes
  • objectstring

    Type of the incident, always "Incident".

  • idstring

    Unique identifier for the incident.

  • Reference code of the incident.

  • Date and time of the incident.

  • Entity ID of the creator of the incident.

  • timezonestring

    Timezone of the incident.

  • typestring

    Type of the incident.

  • statusstring

    Status of the incident.

  • Date when the incident was created.

  • 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;
}
Example Incident
{
  "object": "Incident",
  "id": "2nv7WRgQv4Jl8yK3",
  "reference_code": "JA-UX2LWP",
  "incident_at": "2023-12-10T12:32:00.000000Z",
  "created_by_entity_id": "ADJaqOMm3go3Lx6n",
  "timezone": "Canada/Pacific",
  "type": "Collision - Manually reported via Phone",
  "status": "open",
  "created_at": "2023-12-08T10:25:25.000000Z",
  "updated_at": "2023-12-19T08:26:15.000000Z",
  "case_id": "Eramq8bG7bRJK9yl",
}
Table of Contents