| DICOM PS3.18 2025e - Web Services |
|---|
This example illustrates a request to retrieve an existing modality performed procedure step in JSON returning specific attributes only, in this case the Patient's Name (0010,0010), the Performed Procedure Step Status (0040,0252), and the Performed Station Name (0040,0242).
GET /radiology/modality-performed-procedure-steps/1.2.250.1.59.40211.12345678.987654?includefield=00100010,00400252,00400242 HTTP/1.1 Host: www.hospital-stmarco Accept: application/dicom+json
A successful response to the request will be:
HTTP/1.1 200 OK
Content-Length: 289
Content-Type: application/dicom+json; charset=utf-8
[
{
"00100010": { "vr": "PN", "Value": [{ "Alphabetic": "Doe^Sally" }] },
"00400242": { "vr": "SH", "Value": ["CTSCANNER"] },
"00400252": { "vr": "CS", "Value": ["COMPLETED"] }
}
]
The order of the Attributes in the result is different than that of the request, as the JSON result needs to provide the Attributes in ascending order (see Section F.2.2). Such ordering is not required for the query parameters.
| DICOM PS3.18 2025e - Web Services |
|---|