Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Some elements of the "Manage" tab in the Project report page have their settings set via these individual REST paths. Others, particularly those added via plugin or module, will store their settings in the Project Config Service. Expect a rationalization of these settings in a future XNAT release.


Panel

Contents

Table of Contents



Get A Project's Accessibility Status

...

Code Block
PUT - /data/projects/{id}/quarantine_code/{code}

Parameters:

ParameterDescriptionParameter TypeData Type
{id}Project IDpathstring
{code}Valid Quarantine setting codes
  • 0: Project is not using the Quarantine
  • 4: Project is using the Quarantine
pathinteger

Response: None


Get A Project's Scan Types

...

Code Block
GET - /data/projects/{id}/scan_types

Parameters:

ParameterDescriptionParameter TypeData Type
{id}Project IDpath - requiredstring
table

Restrict the table of results to a specific data type:

  • mrScanData
  • petScanData
  • ctScanData
  • otherDicomScanData
querystring - optionalstring


Response:

Code Block
{
  "ResultSet": {
    "Result": [
      {
        "series_descriptions": "AXIAL_T2_STAR,Axial T2-Star,Axial T2 Star,Axial T2-Star,Axial T2 Star,Axial T2 Star,Axial T2-Star,Axial T2 Star,Axial T2-Star,AXIAL_T2_STAR,AXIAL_T2_STAR,AXIAL_T2_STAR,",
        "type": "Axial T2 Star"
      },
      ...
    ],
    "totalRecords": "12",
    "title": "Scan Types"
  }
}

...