Consumer Data Auto
Auto
/consumer-journey/v3/consumer-data/auto
Submit auto consumer data to generate a SimplyIOA consumer journey URL for the auto journey.
See also:
Request: AutoConsumerDataRequest
Response: ConsumerDataSubmissionDetails
Example POST Request
Consider the following JSON request made via the developer portal:
JSON Post Request
{
"firstName": "Jeff",
"lastName": "Ward",
"dateOfBirth": "1990-05-29",
"email": "test@test.com",
"phone": "541 754 3010",
"campaignCode": "MAGIC",
"productData": {
"address": {
"streetNumber": "1434",
"addressLine1": "Appleton Avenue",
"addressLine2": "",
"apartmentNumber": "6b",
"city": "Orlando",
"county": "Orange County",
"state": "FL",
"zip": "32806"
},
"gender": "Male",
"drivers": [
{
"firstName": "Jake",
"lastName": "Ward",
"licenseStatus": "PersonalAuto",
"licenseObtainedAge": "17",
"licenseEverSuspendedOrRevoked": false,
"sr22Required": false,
"gender": "Male",
"dateOfBirth": "1990-05-29",
"maritalStatus": "Single",
"occupation": "Architect",
"educationLevel": "SomeHighSchool",
"relationshipToApplicant": "Insured",
"violations": [
{
"violationDate": "2020-01-01",
"type": "CellPhone"
}
],
"claims": [
{
"claimDate": "2022-06-01",
"amount": "450",
"type": "Wing mirror"
}
]
}
],
"vehicles": [
{
"vin": "19XFC1F84HE004530",
"year": "2023",
"make": "Honda",
"model": "Civic",
"subModel": "Type R",
"primaryUse": "Personal",
"garageType": "AttachedGarage",
"parkedAtMailingAddress": true,
"garagingAddress": {
"streetNumber": "1434",
"addressLine1": "Appleton Avenue",
"addressLine2": "",
"apartmentNumber": "6b",
"city": "Orlando",
"county": "Orange County",
"state": "FL",
"zip": "32806"
},
"oneWayDistance": "17",
"annualMileage": "10000",
"ownership": "Leased",
"coveragePackage": "Basic"
}],
"maritalStatus": "Married",
"yearsAtCurrentAddress": "10",
"homeOwnership": "OwnedHouse",
"creditRating": "Excellent",
"bankruptcy": false,
"currentCarrier": "Progressive",
"currentInsuranceExpirationDate": "2023-05-09",
"currentInsuranceYears": "TenOrMoreYears",
"bodilyInjuryLiabilityLimit": "BI_100000_300000"
},
"metadata": {
"TestKey1": "TestValue1",
"TestKey2": "TestValue2"
}
}
All going well you should get a successful response such as the following
JSON Response
{
"traceId": "b934b333-1dda-4095-9f67-c404eb4f1b66",
"errors": [],
"payload": {
"onlineJourneyUrl": "https://car-insurance-sandbox.simplyioa.com/?consumerRef=b934b333-1dda-4095-9f67-c404eb4f1b66"
}
}