RESTfulService.getPathParameter

Returns a path parameter based on the configured endpoint path parameter. The path parameters are configured by wrapping the name in braces e.g {customerId}

Further documentation.

Javascript example:

 
 var customerId = form.rest.getPathParameter("customerId");
 //get customer details
 ...
 

returns java.lang.String

Parameters

java.lang.String  parameter,