The auto quote object
Required properties
Parameter | Type | Description |
---|---|---|
insurance_carrier | String | The insurance carrier of the quote. The list of supported carriers are here. NOTE: If the carrier is not in the list, you can put it as is, but some features may not be supported for the agent. |
vehicles | Array | An array of objects where each object represents a vehicle covered by the quote. Learn more about the auto object here. |
Optional properties
Parameter | Type | Description |
---|---|---|
existing_policy_number | String | The policy number of the quote. |
policy_renewal_date | String | The renewal date of the quote. The date format should be YYYY-MM-DD. Example: 2020-12-31 |
policy_term | String | The policy term of the quote. The accepted values are 6 months and 12 months (case sensitive). |
eft_draft_date | Number | The EFT draft date of the quote. Any whole number from 1 to 31 is accepted. |
payment_plan | String | The payment plan of the quote. The accepted values are Pay-in-Full, 2-Pay, Monthly-Credit/Debit, Monthly-by-Mail, 4-Pay, and Monthly-EFT (case sensitive). |
full_term_premium | Number | The full term premium of the quote. Any non-negative number is accepted. Example: 5000.54 |
bodily_injury_liability_coverage | String | The bodily injury liability coverage of the quote. Click here for the list of accepted values. |
property_damage_coverage | String | The property damage coverage of the quote. Click here for the list of accepted values. |
um_uim_liability_coverage | String | The UM/UIM liability coverage of the quote. Click here for the list of accepted values. |
um_uim_property_damage_coverage | String | The UM/UIM property damage coverage of the quote. Click here for the list of accepted values. |
personal_injury_protection_coverage | String | The personal injury protection coverage of the quote. Click here for the list of accepted values. |
medical_protection_coverage | String | The medical protection coverage of the quote. Click here for the list of accepted values. |
Example
{
"insurance_carrier": "Allstate",
"existing_policy_number": "AUTOEPN123",
"policy_renewal_date": "2021-05-25",
"policy_term": "12 months",
"eft_draft_date": 1,
"payment_plan": "Pay-in-Full",
"full_term_premium": "1800",
"bodily_injury_liability_coverage": "30/60",
"property_damage_coverage": "40",
"um_uim_liability_coverage": "50/100",
"um_uim_property_damage_coverage": "50",
"personal_injury_protection_coverage": "7500",
"medical_protection_coverage": "7500",
"vehicles": [{
"year": 2019,
"make": "Ford",
"model": "Fiesta",
"vin": "9I48D5392TO255928",
"license_plate": "RUX-9977",
"owner_full_name": "Doretha Bauch",
"ownership_status": "Financed",
"annual_mileage": 8650,
"collision_coverage": 500,
"comprehensive_coverage": 500,
"rental_car_coverage": "80",
"towing_coverage": "20/600"
}]
}