The auto quote object

Required properties

ParameterTypeDescription
insurance_carrierStringThe 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.
vehiclesArrayAn array of objects where each object represents a vehicle covered by the quote. Learn more about the auto object here.

Optional properties

ParameterTypeDescription
existing_policy_numberStringThe policy number of the quote.
policy_renewal_dateStringThe renewal date of the quote. The date format should be YYYY-MM-DD.
Example: 2020-12-31
policy_termStringThe policy term of the quote. The accepted values are 6 months and 12 months (case sensitive).
eft_draft_dateNumberThe EFT draft date of the quote. Any whole number from 1 to 31 is accepted.
payment_planStringThe 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_premiumNumberThe full term premium of the quote. Any non-negative number is accepted.
Example: 5000.54
bodily_injury_liability_coverageStringThe bodily injury liability coverage of the quote. Click here for the list of accepted values.
property_damage_coverageStringThe property damage coverage of the quote. Click here for the list of accepted values.
um_uim_liability_coverageStringThe UM/UIM liability coverage of the quote. Click here for the list of accepted values.
um_uim_property_damage_coverageStringThe UM/UIM property damage coverage of the quote. Click here for the list of accepted values.
personal_injury_protection_coverageStringThe personal injury protection coverage of the quote. Click here for the list of accepted values.
medical_protection_coverageStringThe 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"
}]
}
*The details in the example above are fictional. Any resemblance to an actual property is purely coincidental.