Insurance

The Insurance resource encompasses the details of an insurance policy associated with a contact. It includes information such as the insurer, policy type, policy number, claim intend, coverage type, deductible, excess, onward travel coverage, and additional notes.

The insurance object

Attributes
Insurance
interface Insurance {
  object: "Insurance";
  id: string;
  insurer: string | null;
  policy_type: string | null;
  policy_number: string | null;
  claim_intend: boolean | null
  valid_from: string | null;
  valid_to: string | null;
  coverage_type: string | null;
  vehicle_involved_covered: boolean;
  policy_contact_is_driver: boolean;
  insurance_limits_note: string | null;
  deductible_excess_compulsory: string | null;
  deductible_excess_voluntary: string | null;
  deductible_excess_total: string | null;
  deductible_excess_cover_addon: string | null;
  deductible_excess_note: string | null;
  onward_travel_cover: string | null;
  onward_travel_cover_note: string | null;
  insurance_note: string | null;
  created_at: string;
  updated_at: string;
}
Example Insurance
{
  "id": "NdkBR8425g2vOeoP",
  "object": "Insurance",
  "insurer": "Test Insurance Company",
  "claim_intend": null,
  "valid_to": "2024-06-21T00:00:00.000000Z",
  "created_at": "2024-05-31T06:48:31.000000Z",
  "updated_at": "2024-05-31T07:01:47.000000Z",
  "valid_from": "2024-05-09T00:00:00.000000Z",
  "policy_type": "vehicle",
  "coverage_type": "Fully Comprehensive",
  "policy_number": "test-policy-123",
  "insurance_note": "General policy note",
  "onward_travel_cover": true,
  "insurance_limits_note": "Policy limit note",
  "deductible_excess_note": "Excess note",
  "deductible_excess_total": null,
  "onward_travel_cover_note": "Onward note",
  "policy_contact_is_driver": true,
  "vehicle_involved_covered": false,
  "deductible_excess_voluntary": null,
  "deductible_excess_compulsory": null,
  "deductible_excess_cover_addon": true
}