...
Search | |
---|---|
/ws/fhir/Encounter/{id} | This request will fetch the Encounter for the given unique uuid. Here id represents, the logical resource id associated with the resource. |
/ws/fhir/Encounter?_id={id} | This request will fetch all Encounter using the given uuid value. This will return a List of Encounter as the response.Here _id parameter represents, the logical resource id associated with the resource. |
/ws/fhir/Encounter?patient.identifier={identifier} | This request will fetch Encounters per patient, identified by the given patient's identifier. This will return a List of Encounter ( 0..* Encounter ) as the response. Here the identifier parameter represents, patient identifier. |
/ws/fhir/Encounter?patient.identifier={identifier}&part-of={uuid} | Search encounters belongs to a patient specified in given identifier. If part-of= none then it will return all visits and encounters which doesn't have parent visit. If part-of specified it will return encounters of patient with matching visit uuid value specified in part-of field. |
/ws/fhir/Encounter?_id={id}&part-of={uuid} | Search encounters belongs to a of given id. If part-of= none then it will return only encounter. Otherwise it will return encounter both match id and the visit uuid. |
POST Requests
Operations | |
---|---|
/ws/fhir/Encounter/$everything With body : <Parameters xmlns="http://hl7.org/fhir"/> | This request will return bundle resource with resources that associate with encounter which associate with given encounter Id |
...