FHIR Chat · MedicationOrder · implementers

Stream: implementers

Topic: MedicationOrder


view this post on Zulip Shayan Aliyari (Jun 22 2017 at 16:56):

Is there a way to get multiple patient "MedicationOrder " on single HTTP request ?

view this post on Zulip Conrad Chmara (Jun 22 2017 at 17:03):

There are multiple ways to do this using search: https://www.hl7.org/fhir/search.html
baseurl /MedicationOrder?subject.id=...
baseurl/Patient/{PatientId}/MedicationOrder

Depends on how you are looking these items up.

view this post on Zulip Shayan Aliyari (Jun 22 2017 at 17:10):

I'm working with cerner sandbox
these request you sent doesn't work
I only can get medicationOrder by this request
baseurl /MedicationOrder?patient={PatientId}
it desn't work when i try with _id => baseurl /MedicationOrder?_id={id}

view this post on Zulip Jenni Syed (Jun 22 2017 at 17:11):

Hi Shayan :)
I think there was a misunderstanding. I directed you here more for your questions around meta.versionId, and meta.lastUpdated. The question above is specific to what each FHIR server implements. The questions about how versioning works are core to the FHIR spec

view this post on Zulip Jenni Syed (Jun 22 2017 at 17:12):

We will be implementing by _id for MedicationOrder, it's a gap in our currently implementation, but it wasn't needed immediately for CCDS

view this post on Zulip Jenni Syed (Jun 22 2017 at 17:13):

I also posted that out to your question on our google group

view this post on Zulip Shayan Aliyari (Jun 22 2017 at 17:21):

Hi Jenni
thanks I got that, so you mean right now it's not possible to get multiple patients medication in one request
and for updating a patient medication I need to check each medication entry ( medication ID ) separate.
that's sounds not possible for us !
because in our application we have a list of patients for each medical team like ( 20/30 ) patients
and it will take too much time if i check each medication of each patient separate

thanks for your responds :)

view this post on Zulip Jenni Syed (Jun 22 2017 at 17:23):

Our server is currently built following most of our clinical workflows - it's patient centric right now. While _id will let you check for updates by each specific resource, it won't let you get new items. The lastUpdated queries and pub/sub are better approaches for that workflow, but I'm not sure which FHIR servers outside of reference implement all of that right now


Last updated: Apr 12 2022 at 19:14 UTC