I wrote a simple webaction and deployed to my workspace
import { setGlobals } from "./common.mjs";
function main(params) {
setGlobals(params);
return { result: "Trigger runtime action successfully" };
}
const _main = main;
export { _main as main };
When I call the action from Postman, I only receive a 204 and NO response message
But I know web-action is invoked, coz when I add log statements, they are logged successfully. What am I missing? Why is the result message not returned when invoked from Postman?