Unable pass axios response to callback

Hey @mattbtay,
I think the issue is mixing async/await with callbacks. If you’re more comfortable with callbacks, we do support that, but you’ll want to delete the async in front of (event, context, callback). If you’d rather go the async/await route, I’d suggest taking a look at some demos of how that syntax works with AWS lambdas (which is what Netlify Functions are under the hood). This thread shows a working example:

Let us know if that helps!