v1

latestOpenAPI 3.0.02026-07-142740323.4 KB
Series

Order the slices

Sort the instances and frames (slices) of the DICOM series whose Orthanc identifier is provided in the URL. This URI is essentially used by the Orthanc Web viewer and by the Osimis Web viewer.

get/series/{id}/ordered-slices

Path parameters

idstring required

Orthanc identifier of the series of interest

Response

Dicomstring[]

Ordered list of paths to DICOM instances

Slicesstring[]

Ordered list of paths to frames. It is recommended to use this field, as it is also valid in the case of multiframe images.

SlicesShortobject[]

Same information as the Slices field, but in a compact form

Typestring

Can be Volume (for 3D volumes) or Sequence (notably for cine images)

Example response

{
  "Dicom": [
    "/instances/fa1fc64f-e7a051a7-c1233b31-e19bca08-54629531/file",
    "/instances/f5701efb-98170697-404d15f6-59baf69e-4e8ddfae/file",
    "/instances/3b2a215c-2560d4b0-e3730c07-87d3fa7d-3fef44ed/file",
    "/instances/6059d07c-02ae8c74-9436dc7c-007b4d5d-4c770a30/file",
    "/instances/99264275-213c3190-73251bdc-97ccfdb4-1f9656d9/file",
    "/instances/40df6ac1-5ec86316-035ff3c1-07e5c8a8-f6cbd37c/file",
    "/instances/08ff3a1a-c8fb57d9-4e24d9cb-2ed22b80-0ff7461e/file",
    "/instances/6fe353dd-544ce7af-58ce22dd-ab67370c-873330fc/file",
    "/instances/3ad70bbe-bc51faff-860461d2-44745ccf-0ebbbbc8/file",
    "/instances/9058e01a-31a7d982-1691e575-a8607d94-29a9aaca/file",
    "..."
  ],
  "Slices": [
    "/instances/fa1fc64f-e7a051a7-c1233b31-e19bca08-54629531/frames/0",
    "/instances/f5701efb-98170697-404d15f6-59baf69e-4e8ddfae/frames/0",
    "/instances/3b2a215c-2560d4b0-e3730c07-87d3fa7d-3fef44ed/frames/0",
    "/instances/6059d07c-02ae8c74-9436dc7c-007b4d5d-4c770a30/frames/0",
    "/instances/99264275-213c3190-73251bdc-97ccfdb4-1f9656d9/frames/0",
    "/instances/40df6ac1-5ec86316-035ff3c1-07e5c8a8-f6cbd37c/frames/0",
    "/instances/08ff3a1a-c8fb57d9-4e24d9cb-2ed22b80-0ff7461e/frames/0",
    "/instances/6fe353dd-544ce7af-58ce22dd-ab67370c-873330fc/frames/0",
    "/instances/3ad70bbe-bc51faff-860461d2-44745ccf-0ebbbbc8/frames/0",
    "/instances/9058e01a-31a7d982-1691e575-a8607d94-29a9aaca/frames/0",
    "..."
  ],
  "SlicesShort": [
    [
      "fa1fc64f-e7a051a7-c1233b31-e19bca08-54629531",
      0,
      1
    ],
    [
      "f5701efb-98170697-404d15f6-59baf69e-4e8ddfae",
      0,
      1
    ],
    [
      "3b2a215c-2560d4b0-e3730c07-87d3fa7d-3fef44ed",
      0,
      1
    ],
    [
      "6059d07c-02ae8c74-9436dc7c-007b4d5d-4c770a30",
      0,
      1
    ],
    [
      "99264275-213c3190-73251bdc-97ccfdb4-1f9656d9",
      0,
      1
    ],
    [
      "40df6ac1-5ec86316-035ff3c1-07e5c8a8-f6cbd37c",
      0,
      1
    ],
    [
      "08ff3a1a-c8fb57d9-4e24d9cb-2ed22b80-0ff7461e",
      0,
      1
    ],
    [
      "6fe353dd-544ce7af-58ce22dd-ab67370c-873330fc",
      0,
      1
    ],
    [
      "3ad70bbe-bc51faff-860461d2-44745ccf-0ebbbbc8",
      0,
      1
    ],
    [
      "9058e01a-31a7d982-1691e575-a8607d94-29a9aaca",
      0,
      1
    ],
    "..."
  ],
  "Type": "Volume"
}