Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: chained parameters to search for Encounters by a patient identifier

...

Search
/ws/fhir/Encounter/{id}Above 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}Above request will fetch all the Encounter using the given uuid value. This will give 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}Above request will fetch all the Encounter using the given patient's identifier. This will give a List of Encounter ( 0..* Encounter ) as the response. Here identifier parameter represents, patient identifier.

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

...