Share all details related to your problem, including any error messages you may have received.
With regards to the IIQ plugin framework, I get how to read in the arguments from a Path such as “@Path(“search/{searchObject},{searchString}”)”.
How would you read in the Body of the REST call?
Wen you are developing a rest API that will be consumed by you plugin GUI, at some point you will create a method annotated similar to what you wrote above.
For example
@POST
@Consumes(MediaType.TEXT_PLAIN)
public Response processData(String body) { ...}
In this example I will receive the body in the string format