...
Example: this search requests fetches all Medications of patient 6006 using paging to limit the number of results
For an example see RED Interchange API - Postman Collection 0120 - Patient - All MedicationStatements (Dauermedikation)
As medication statement does not contain any relevant information but the reference between medication and patient we currently do nor provide a read request for a specific statement.
...
Example: this search requests fetches all Medication requests of patient 6006 using paging to limit the number of results
For an example see RED Interchange API - Postman Collection 0121 - Patient - All MedicationRequests (Verordnung)
Code Block | ||
---|---|---|
| ||
<MedicationRequest xmlns="http://hl7.org/fhir"> <id value="gN7tsKbTW7gyqispAHTPSZuyiFBURWwm"/> <meta> <versionId value="1"/> <lastUpdated value="2022-08-04T07:15:54+00:00"/> <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_AW_Verordnung_Arzneimittel|1.2.0"/> </meta> <text> <status value="extensions"/> <div xmlns="http://www.w3.org/1999/xhtml">(V1) | Patient Luca Fink | Medication Status active | zuletzt bearbeitet 2022-08-04T07:15:54+00:00</div> </text> <status value="active"/> <intent value="order"/> <medicationReference> <reference value="Medication/egMNGiQHERUmzlrP"/> </medicationReference> <subject> <reference value="Patient/6tVbNJZq1buNwKmp6UKpd8CpLceNDlRF/_history/1"/> </subject> <authoredOn value="2022-08-04"/> <requester> <reference value="Practitioner/3xZjkMngCnOE9p1IFpiAeDvUZHDvnCHn/_history/1"/> </requester> <dosageInstruction> <text value="0-0-0-0"/> </dosageInstruction> <dispenseRequest> <quantity> <value value="1"/> <system value="http://unitsofmeasure.org"/> <code value="{Package}"/> </quantity> </dispenseRequest> <substitution> <allowedBoolean value="true"/> </substitution> </MedicationRequest> |
...
Code Block | ||
---|---|---|
| ||
{{baseURL}}/{{tenant}}/MedicationRequestPZN?page=1&subject=Patient/6006 |
For an example see RED Interchange API - Postman Collection 0122 - Patient - All MedicationRequests (Verordnung) PZN
Code Block | ||
---|---|---|
| ||
<MedicationRequest xmlns="http://hl7.org/fhir"> <id value="egQFFh8WOkx6BYyd"/> <meta> <versionId value="1"/> <lastUpdated value="2022-08-04T09:20:40+00:00"/> <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_AW_Medikament|1.2.0"/> </meta> <text> <status value="extensions"/> <div xmlns="http://www.w3.org/1999/xhtml">Medikament von PatientLuca Fink</div> </text> <status value="active"/> <intent value="order"/> <medicationReference> <reference value="Medication/egQFFh8WOkx6BYyd"/> </medicationReference> <subject> <reference value="Patient/6tVbNJZq1buNwKmp6UKpd8CpLceNDlRF/_history/1"/> </subject> <authoredOn value="2022-08-04"/> <requester> <reference value="Practitioner/wK7hhpbEIG1qkSdvRCCd3AEA3W4lBfDB/_history/1"/> </requester> <dosageInstruction> <text value="0-1-0-0"/> </dosageInstruction> <dispenseRequest> <quantity> <value value="1"/> <system value="http://unitsofmeasure.org"/> <code value="{Package}"/> </quantity> </dispenseRequest> <substitution> <allowedBoolean value="true"/> </substitution> <code> <coding> <system value="http://fhir.de/CodeSystem/ifa/pzn"/> <code value="05481263"/> </coding> <text value="METFORMIN AL 500 180St N3"/> </code> <form> <coding> <system value="https://fhir.kbv.de/CodeSystem/KBV_CS_SFHIR_KBV_DARREICHUNGSFORM"/> <code value="FTA"/> </coding> </form> <amount> <numerator> <value value="180"/> <unit value="St"/> </numerator> <denominator> <value value="1"/> </denominator> </amount> </MedicationRequest> |
...