serverFunction
Calls a server function and returns the result
Last updated
Calls a server function and returns the result
Last updated
let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
});
console.log(functionResponse.functionResult);let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
},{
payload: true
});
console.log(functionResponse.functionResult);let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
},{
postman: true
});
console.log(functionResponse.functionResult);