I've created a RESTful Web Service in Oracle Apex, using a POST method as "handler". I've setup 11 input parameters which all work fine, it is my one output parameter that does not return successfully.
Here is detail on the Output Paramter
Name: returns
Bind Variable Name: :returns
Access Method: OUT
Source Type: Response
Parameter Type: String
The actual source is a call to a pl/sql package that returns a value that I set :returns equal to (eg :returns := v_result). I've tried this with Source Type Header and still the same result, 'no output'.
How can I get this output parameter to return something in the response?
The request accepts a Json payload.
Any help greatly appreciated