...
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
|
Get A Project's Accessibility Status
...
Code Block |
---|
PUT - /data/projects/{id}/quarantine_code/{code} |
Parameters:
Parameter | Description | Parameter Type | Data Type |
---|---|---|---|
{id} | Project ID | path | string |
{code} | Valid Quarantine setting codes
| path | integer |
Response: None
Get A Project's Scan Types
...
Code Block |
---|
GET - /data/projects/{id}/scan_types |
Parameters:
Parameter | Description | Parameter Type | Data Type |
---|---|---|---|
{id} | Project ID | path - required | string |
table | Restrict the table of results to a specific data type:
| querystring - optional | string |
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" } } |
...