Hello,
I'm stuck with the following case.
I'm trying to search for Patients with help of POST request
POST [Base]/Patient/_search
Content-Type: application/x-www-form-urlencoded
Request Body
name: "Lara"
As a result I'm getting all possible patients. Seems like parameters in request body are just ignored.
Btw when these parameters are used in the URL POST [Base]/Patient/_search?name=Lara - correct result is returned.