Connectathon 2026 Wiki

Racsel logo
Back to home

Tasks · T3.5

Read and display Medication Overview QR

View flow

Present the Medication Overview QR from the patient app or wallet, validate its trust and HCERT content, and display the selected medications at the pharmacy.

Requirements

T3.3 and T3.4

Expected response

The pharmacy verifies the QR signature through the GDHCN trust path, confirms the HCERT with ITB, and displays the medications selected by the patient.

Evidence

Screenshots showing successful validation and the Medication Overview displayed by the pharmacy application or HIS.

Observations

This supplemental task comes from the approved Track 3 sequence diagram and flow. The supplied PDF does not assign it a test-case identifier.

Requests to run

Collection

VHL and HCERT services

Validate Medication Overview HCERT

curl -X POST "${VHL_SERVER}/v2/vshcValidation" \
  -H "Content-Type: application/json" \
  -d '{"qrCodeContent":"${MEOW_QR_CONTENT}"}'

Expected response

HTTP 200 with successful trust, signature, and QR validation results.

Collection

Medication Overview reader

Decode Medication Overview HCERT

curl -X POST "${MEDIATOR_URL}/decode/hcert" \
  -H "Content-Type: application/json" \
  -d '{"include_raw":true,"qr_data":"${MEOW_QR_CONTENT}"}'

Expected response

HTTP 200 with decoded medication and document-origin information that the pharmacy can display.