diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js index 76077db76..d6b3e3431 100644 --- a/src/constants/endpoints.js +++ b/src/constants/endpoints.js @@ -56,8 +56,8 @@ const endpoints = { url: "/parts/api/v1/parts/parts-or-questions", method: "POST", }, - GetPartsOrQuestionsV3: { - url: "/parts/api/v3/parts/parts-or-questions", + GetPartsOrQuestionsV2: { + url: "/parts/api/v2/parts/parts-or-questions", method: "POST", }, GetParts: { diff --git a/src/store/index.js b/src/store/index.js index b75ff652d..6efa57754 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1995,7 +1995,7 @@ export const actions = { const glassArrayForPayload = convertGlassPieceNamingForApi(glassArray); const partsOrQuestionsEndpoint = vehicle.vinRequired - ? endpoints.GetPartsOrQuestionsV3 + ? endpoints.GetPartsOrQuestionsV2 : endpoints.GetPartsOrQuestions; const response = await globalMethods