Split RX serie

Hi everyone,

Certain hospitals and medical centers with which we work send us their X-ray studies with all the instances (images) in the same series. This brings some problems in the viewer.

We’d like to be able to separate all instances into different strings, but in the Orthanc API we don’t find a ‘split’ of a string. Is there a method? If not, how do you recommend us to implement something like this?

Hi,

You may just call /modify with a potentially empty payload and then delete the original series:
curl -X POST http://localhost8042/series/98b07423-69e449ef-6aec3a25-5c8e7eec-bce8a64c/modify -d “{}”

curl -X DELETE http://localhost8042/series/98b07423-69e449ef-6aec3a25-5c8e7eec-bce8a64c

HTH

Alain

We test this and work perfectly. Thanks!