After trying multiple things, this answer did the trick Netlify Functions + axios Get not working in production - #2 by hrishikesh
Essentially adding return
ing the axios
promise
console.log("POSTing data to fulfillment");
return axios(axiosconfig). // <- here
.then(function (response) {
const res = response.data;
const res_str = JSON.stringify(res);
......