CASH-2856 - if VinRequired use Parts Api v2 endpoint for Parts-Or-Questions

This commit is contained in:
Minojhini Valaiyapathi 2026-06-10 14:34:27 -04:00
parent 2b0e07948e
commit f3b9c34656
2 changed files with 10 additions and 2 deletions

View file

@ -56,6 +56,10 @@ const endpoints = {
url: "/parts/api/v1/parts/parts-or-questions",
method: "POST",
},
GetPartsOrQuestionsV2: {
url: "/parts/api/v2/parts/parts-or-questions",
method: "POST",
},
GetParts: {
url: "/parts/api/v1/parts/parts",
method: "POST",

View file

@ -1970,10 +1970,14 @@ export const actions = {
// create a new array to avoid mutating state
const glassArrayForPayload = convertGlassPieceNamingForApi(glassArray);
const partsOrQuestionsEndpoint = vehicle.vinRequired
? endpoints.GetPartsOrQuestionsV2
: endpoints.GetPartsOrQuestions;
const response = await globalMethods
.callHttpClient({
method: endpoints.GetPartsOrQuestions.method,
endpoint: endpoints.GetPartsOrQuestions.url,
method: partsOrQuestionsEndpoint.method,
endpoint: partsOrQuestionsEndpoint.url,
payload: {
carId: carId,
glassPieces: glassArrayForPayload,