Good Day All,
I’m looking to make a HttpGet call once OnStableStudy is activated. I’m having trouble getting the PatientID Tag. Does anyone know how I can get this to add to my get call?
Thanks all!
Good Day All,
I’m looking to make a HttpGet call once OnStableStudy is activated. I’m having trouble getting the PatientID Tag. Does anyone know how I can get this to add to my get call?
Thanks all!
Every time I ask a question I find an answer after. Here is what I am doing, if anyone knows an easier way let me know.
function OnStableStudy(studyId, tags, metadata)
patient = ParseJson(RestApiGet(‘/studies/’ … studyId))
PrintRecursive(patient[‘PatientMainDicomTags’][‘PatientID’])
local answer = HttpGet(‘http://localhost:8181/?patientId=’ … patient[‘PatientMainDicomTags’][‘PatientID’])
end