diff --git a/src/store/index.js b/src/store/index.js
index 65eff4230..780b50c89 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -253,6 +253,18 @@ export const actions = {
},
});
},
+ lookupVinByAddress(context, { licenseLastName, licenseStreetAddress, licenseZip, licenseState }) {
+ return globalMethods.callHttpClient({
+ method: endpoints.LookupVinByAddress.method,
+ endpoint: endpoints.LookupVinByAddress.url,
+ payload: {
+ licenseLastName: licenseLastName,
+ licenseStreetAddress: licenseStreetAddress,
+ licenseZip: licenseZip,
+ licenseState: licenseState
+ },
+ });
+ },
getVehicleMakes(context, { year }) {
return globalMethods.callHttpClient({
method: endpoints.GetVehicleMakes.method,