72 lines
1.5 KiB
JavaScript
72 lines
1.5 KiB
JavaScript
const endpoints = {
|
|
GetRouteInfo: {
|
|
url: "/content/api/v1/content/RouteInfo",
|
|
method: "POST",
|
|
},
|
|
GetHomepageInfo: {
|
|
url: "/content/api/v1/content/HomepageInfo",
|
|
method: "GET",
|
|
},
|
|
GetVehicleYears: {
|
|
url: "/vehicle/api/v1/vehicle/years",
|
|
method: "GET",
|
|
},
|
|
GetVehicleMakes: {
|
|
url: "/vehicle/api/v1/vehicle/Makes",
|
|
method: "GET",
|
|
},
|
|
GetVehicleModels: {
|
|
url: "/vehicle/api/v1/vehicle/Models",
|
|
method: "GET",
|
|
},
|
|
GetVehicleStyles: {
|
|
url: "/vehicle/api/v1/vehicle/Styles",
|
|
method: "GET",
|
|
},
|
|
GetVehicle: {
|
|
url: "/vehicle/api/v1/vehicle/lookup",
|
|
method: "GET",
|
|
},
|
|
GetDamageOptions: {
|
|
url: "/parts/api/v1/parts/damage-options",
|
|
method: "GET",
|
|
},
|
|
GetPageData: {
|
|
url: "/content/api/v1/content",
|
|
method: "GET",
|
|
},
|
|
LookupVehicleByYmms: {
|
|
url: "/vehicle/api/v1/vehicle/Lookup",
|
|
method: "GET",
|
|
},
|
|
LookupVehicleByVin: {
|
|
url: "/vehicle/api/v1/vehicle/Lookup",
|
|
method: "POST",
|
|
},
|
|
LookupVinByPlate: {
|
|
url: "/vehicle/api/v1/vehicle/lookup-vin-by-plate",
|
|
method: "POST",
|
|
},
|
|
GetPartsOrQuestions: {
|
|
url: "/parts/api/v1/parts/parts-or-questions",
|
|
method: "POST",
|
|
},
|
|
SaveOrder: {
|
|
url: "/order/api/v1/order/save",
|
|
method: "POST",
|
|
},
|
|
LoadOrder: {
|
|
url: "/order/api/v1/order/load",
|
|
method: "POST",
|
|
},
|
|
ValidateZip: {
|
|
url: "/location/api/v1/location/zip",
|
|
method: "GET",
|
|
},
|
|
LogExperimentExposureIfAssigned:{
|
|
url: "/analytics/api/v1/analytics/log-experiment-exposure",
|
|
method: "POST",
|
|
}
|
|
};
|
|
|
|
export { endpoints };
|