action orthanc_server_get_changes { label: "List changes" description: "Whenever Orthanc receives a new DICOM instance, this event is recorded in the so-called _Changes Log_. This enables remote scripts to react to the arrival of new DICOM resources. A typical application is auto-routing, where an external script waits for a new DICOM instance to arrive into Orthanc, then forward this instance to another modality." provider: orthanc_server method: GET path: "/changes" encoding: json input: { type: "object" properties: { limit: { type: "number" } since: { type: "number" } } additionalProperties: false } output: { description: "The list of changes" properties: { Changes: { type: "array" description: "The individual changes" items: { type: "object" } } Done: { type: "boolean" description: "Whether the last reported change is the last of the full history" } Last: { type: "number" description: "The index of the last reported change, can be used for the `since` argument in subsequent calls to this route" } } } }