I am trying to find how to issue a call to the following restful service from JMeter:
@DELETE
@Path("/user")
void removeUser(String userId);
There are plenty examples on POST, GET, but I cannot find one for delete. Specifically, I cannot find a way to pass a parameter for "userId".
Thanks