v1

latestOpenAPI 3.0.02026-07-142740323.4 KB
Patients

Get child studies

Get detailed information about the child studies of the DICOM patient whose Orthanc identifier is provided in the URL

get/patients/{id}/studies

Path parameters

idstring required

Orthanc identifier of the patient of interest

Query parameters

fullboolean

If present, report the DICOM tags in full format (tags indexed by their hexadecimal format, associated with their symbolic name and their value)

requestedTagsstring

If present, list the DICOM Tags you want to list in the response. This argument is a semi-column separated list of DICOM Tags identifiers; e.g: 'requestedTags=0010,0010;PatientBirthDate'. The tags requested tags are returned in the 'RequestedTags' field in the response. Note that, if you are requesting tags that are not listed in the Main Dicom Tags stored in DB, building the response might be slow since Orthanc will need to access the DICOM files. If not specified, Orthanc will return

shortboolean

If present, report the DICOM tags in hexadecimal format

Response

{"stackTrail":"paths:/patients/{id}/studies:get:responses:200:content:application/json:schema","oasType":"schema","type":"unknown","description":"JSON array containing information about the child DICOM studies","example":[{"ID":"e98b9ac7-dd31ac40-ff046cb2-f0400d30-12f81d85","IsStable":true,"LastUpdate":"20180414T091542","MainDicomTags":{"AccessionNumber":"0","InstitutionName":"dPJ","ReferringPhysicianName":"YzTEkpkak0p0Tk5","RequestedProcedureDescription":"CT2 tête, face, sinus","StudyDate":"20060531","{...}":"..."},"ParentPatient":"46e6332c-677825b6-202fcf7c-f787bc5f-7b07c382","{...}":"..."}]}

Example response

[
  {
    "ID": "e98b9ac7-dd31ac40-ff046cb2-f0400d30-12f81d85",
    "IsStable": true,
    "LastUpdate": "20180414T091542",
    "MainDicomTags": {
      "AccessionNumber": "0",
      "InstitutionName": "dPJ",
      "ReferringPhysicianName": "YzTEkpkak0p0Tk5",
      "RequestedProcedureDescription": "CT2 tête, face, sinus",
      "StudyDate": "20060531",
      "{...}": "..."
    },
    "ParentPatient": "46e6332c-677825b6-202fcf7c-f787bc5f-7b07c382",
    "{...}": "..."
  }
]