RESTfulService.getRequestBody

Returns the request body. Further documentation.

Javascript example:

 //get the post parameter
 var body = form.rest.getRequestBody();
 if(body)
 {
   var json = JSON.parse(body);
   ...
 }
 
 
 

returns java.lang.String