Get List of Stored Searches
Code Block |
---|
GET /data/search/saved |
...
Response Formats: JSON (default), XML, CSV
Get A Specific Stored Search
This function will return the XML definition of a specified stored search.
...
Parameter | Description | Parameter Type | Data Type |
---|---|---|---|
ID | The unique ID of the stored search. These will be returned in the list of stored searches | Path | string |
Response Formats: XML
Create A Stored Search
This function will allow you to create a new stored search by posting XML to the XNAT search API.
...
Parameter | Description | Parameter Type | Data Type |
---|---|---|---|
model | The XML structure of the stored search you want to create. See Share Custom Data Tables as Stored Searches for Project Reporting for notes on formatting. | Body | XML |
Update A Stored Search
This function will allow you to post an updated XML definition to an already-created stored search.
...
Parameter | Description | Parameter Type | Data Type |
---|---|---|---|
ID | The unique ID of the stored search. These will be returned in the list of stored searches | Path | string |
model | The XML structure of the stored search you want to create. See Share Custom Data Tables as Stored Searches for Project Reporting for notes on formatting. | body | XML |
Get Results From A Stored Search
Code Block |
---|
GET /data/search/saved/{ID}/results |
...