Hi Shaun,
All Appery.io event handlers do not have parameters transmissions described in the code. But the parameters are always passed anyway. They just do not have a name. The built-in JS pseudo-array "arguments" that is always accessible within functions is used to access them. This object contains the passed parameters as array elements.
In the case of action on Success event, the data comes in the first argument of the function, and therefore are available in arguments [0].
That is, to get the response data you would need the following JavaScript code:
codevar data = arguments[0];
// here you can try check it by uncomment next line
// alert( JSON.stringify( data ) );/code