We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e00cfe commit 2be9923Copy full SHA for 2be9923
1 file changed
gateway-api/src/gateway_api/app.py
@@ -38,6 +38,7 @@ def get_app_port() -> int:
38
@app.route("/patient/$gpc.getstructuredrecord", methods=["POST"])
39
def get_structured_record() -> Response:
40
try:
41
+ print(f"Headers: {request.headers}", flush=True)
42
get_structured_record_request = GetStructuredRecordRequest(request)
43
controller = Controller()
44
flask_response = controller.run(request=get_structured_record_request)
0 commit comments