How can I search by StudyInstanceUID in Orthanc Explorer 2?

I am stuck on searching for studies by their StudyInstanceUID? Does anyone know how to do it?

Hello,

You can use the /tools/lookup route in the REST API of Orthanc. For instance:

$ curl https://demo.orthanc-server.com/tools/lookup -X POST -d '2.16.840.1.113669.632.20.1211.10000231621'
[
   {
      "ID" : "e98b9ac7-dd31ac40-ff046cb2-f0400d30-12f81d85",
      "Path" : "/studies/e98b9ac7-dd31ac40-ff046cb2-f0400d30-12f81d85",
      "Type" : "Study"
   }
]

Another possibility is to use the more powerful /tools/find route in the REST API. For instance:

$ curl https://demo.orthanc-server.com/tools/find -d '{"Level":"Study","Query":{"StudyInstanceUID":"2.16.840.1.113669.632.20.1211.10000231621"},"Expand":true}' -X POST

Best Regards,
Sébastien-

Hi,

There is no user interface for that in OE2 but you can open a study directly with this kind of URL:

http://localhost:8042/ui/app/#/filtered-studies?StudyInstanceUID=123.29504546855.175394197888

HTH,

Alain