delete ae title through rest api.

Hi,

1, Added ae title through rest APi, but sometimes it shows in list and sometimes doesn’t display ae title.
http://localhost:8042/modalities/noor/configuration

{
“AET” : “noor”,
“AllowEcho” : true,
“AllowEventReport” : true,
“AllowFind” : true,
“AllowGet” : true,
“AllowMove” : true,
“AllowNAction” : true,
“AllowStore” : true,
“AllowTranscoding” : true,
“Host” : “10.10.0.10”,
“LocalAet” : “”,
“Manufacturer” : “Generic”,
“Port” : 12345,
“UseDicomTls” : false
}

2, when I’m going to delete ae title through rest API, i got following error.

{
“Details” : “Unknown DICOM modality with symbolic name: noor”,
“HttpError” : “Not Found”,
“HttpStatus” : 404,
“Message” : “Accessing an inexistent item”,
“Method” : “DELETE”,
“OrthancError” : “Accessing an inexistent item”,
“OrthancStatus” : 7,
“Uri” : “/modalities/noor”
}

Help needed.

ae_title.PNG

Hello,

The Orthanc Book contains examples about how to create/modify/delete a modality using the REST API:
https://book.orthanc-server.com/users/rest.html#sending-resources-to-remote-modalities-through-dicom-c-store (in the “Configuration” section)

Sébastien-