function ramProductsInit(){ const RAM_ID = 106633230000024; function init(){ getRamData(RAM_ID) } async function getRamData(id){ let resData =await API_SERVICES_ACTIONS.getAPIService(`apis/v4/bizgaze/integrations/products/itemtagscombination/productid/${id}`,true); if(resData.isError){ alert(resData.errorMsg.message); return; } let res = resData.response; res = JSON.parse(res.result); console.log(res); let html = ''; for(let i=0;i
...
Details
` } init(); } ramProductsInit();