| DICOM PS3.18 2025d - Web Services |
|---|
This example illustrates an example of an HTTP request for completing a modality performed procedure step. It is a continuation of the previous example as given in Section B.38, working on the same MPPS with UID 1.2.250.1.59.40211.12345678.987654. Here, the mandatory Performed Procedure Step End Date (0040,0250) and Performed Procedure Step End Time (0040,0251) are added, and the Performed Procedure Step Status (0040,0252) is set to "COMPLETED".
POST /radiology/modality-performed-procedure-steps/1.2.250.1.59.40211.12345678.987654/update HTTP/1.1
Host: www.hospital-stmarco
Content-Type: application/dicom+json
…
{
…,
"00400250": { "vr": "DA", "Value": ["20200101"] },
"00400251": { "vr": "TM", "Value": ["1300"] },
"00400252": { "vr": "CS", "Value": ["COMPLETED"] },
…
}
…
A successful response to the request will be:
HTTP/1.1 200 OK
| DICOM PS3.18 2025d - Web Services |
|---|