From cef9eba7593c2e4cab8f67d494b1971ea563ec76 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 11 Jul 2024 06:26:55 -0400 Subject: [PATCH] Updated endpoint names to match the backend for Vehicle service --- src/constants/endpoints.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js index f738e707c..2d4a823c2 100644 --- a/src/constants/endpoints.js +++ b/src/constants/endpoints.js @@ -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: {