ServerSideFunction
Server Functions (or Server Side Functions) are functions that are executed on the server, instead of the javascript engine in the browser. Basically they are webservices, that respond to a post call and that accept the parameters in a specific pattern, defined by the brixxbox.
You can use the api function serverFunction to call a Server Function
To call a function and get the response object:
let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
});
console.log(functionResponse.functionResult);
To get an example payload based on the current app state:
let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
},{
payload: true
});
console.log(functionResponse.functionResult);
To get an example postman collection including the payload of the current app:
let functionResponse = brixxApi.serverFunction("myFunction", {
name: "Hallo"
},{
postman: true
});
console.log(functionResponse.functionResult);
Last modified 11mo ago