Stream: implementers
Topic: search patients by patient id
Julian Gruendner (Mar 25 2019 at 14:57):
is there a way one can search/read multiple patients at the same time by patient id ?
like: give me the patients with id 1, 2304, 23,12,14
this does not work: http://hapi.fhir.org/baseDstu3/Patient?_id=1,2,3,4
Lloyd McKenzie (Mar 25 2019 at 15:01):
I think your query is valid. That doesn't mean that all servers will support it though. @James Agnew ?
Robert Scanlon (Mar 25 2019 at 15:01):
http://hapi.fhir.org/baseDstu3/Patient?_id=1638500,1638502,1638503 seems to work for me.
James Agnew (Mar 25 2019 at 15:25):
Yup, the _id
parameter should be fully supported in HAPI FHIR.
The specific example you included probably didn't work only because there are no Patients with the IDs 1/2/3/4.
Julian Gruendner (Mar 25 2019 at 17:41):
thanks everyone....it seems that i used the wrong ids for the hapi fhir and my server does not support the or
Last updated: Apr 12 2022 at 19:14 UTC