Updated endpoint names to match the backend for Vehicle service

This commit is contained in:
Leah Schumann 2024-07-11 06:26:55 -04:00
parent aefa44c33f
commit cef9eba759

View file

@ -33,15 +33,15 @@ const endpoints = {
method: "GET",
},
LookupVehicleByVin: {
url: "/vehicle/api/v1/vehicle/Lookup",
url: "/vehicle/api/v1/vehicle/lookup",
method: "POST",
},
LookupVinByPlate: {
url: "/vehicle/api/v1/vehicle/lookup-vin-by-plate",
url: "/vehicle/api/v1/vehicle/lookup-by-plate",
method: "POST",
},
LookupVinByAddress: {
url: "/vehicle/api/v1/vehicle/lookup-vin-by-address",
url: "/vehicle/api/v1/vehicle/lookup-by-address",
method: "POST",
},
LookupVinByImage: {