Get Status
Overview
This channel provides an HTTP API for external systems to query for specific study data from VannahPacs. The primary use case is to check the status of a study based on the AccessionNumber.
Request URL:
http://172.16.223.10:6669?AccessionNumber=AN7722014890
Example Responses
Success (Status 200 - Study Found):
The response will be the study data in application/dicom+json format with an added status field.
{
"0020000D": {
"vr": "UI",
"Value": [ "..." ]
},
"00080050": {
"vr": "SH",
"Value": [ "AN7722014890" ]
},
// ... other DICOM tags
"status": "COMPLETED"
}
Failure (Status 404 - Study Not Found):
{
"error": "not_found",
"status": "NOT FOUND",
"message": "Study not found in the available list.",
"accessionNumber": "AN7722014890"
}