Retrieve Saved Queries

get

/ohfapi/cg/v3.3/savedqueries

This endpoint supports the retrieval of Saved Queries for the Logged in User.It returns Saved Query information like Description, Context, Privacy and other Saved Query information.

Request

Supported Media Types
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollection
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Serializable
Type: object

400 Response

Invalid parameters supplied

404 Response

Query(s) not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/savedqueries

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "SavedQueries",
  "items": [
    {
      "queryId": 10000000000001,
      "queryName": "Clinical Saved Query",
      "contextFlag": "PATIENT",
      "privacy": "PRIVATE",
      "createdDate": "09/15/2016",
      "ownedBy": "tester"
    },
    {
      "queryId": 10000000000009,
      "queryName": "Subject Race Query",
      "contextFlag": "SUBJECT",
      "privacy": "PRIVATE",
      "createdDate": "09/15/2016",
      "ownedBy": "tester"
    },
    {
      "queryId": 10000000000017,
      "queryName": "Specimen Patients Query",
      "contextFlag": "PATIENT",
      "privacy": "PRIVATE",
      "createdDate": "09/15/2016",
      "ownedBy": "tester"
    },
    {
      "queryId": 10000000000027,
      "queryName": "Specimen_subjects_query",
      "contextFlag": "SUBJECT",
      "privacy": "PRIVATE",
      "createdDate": "09/15/2016",
      "ownedBy": "tester"
    },
    {
      "queryId": 10000000001005,
      "queryName": "prediction",
      "contextFlag": "PATIENT",
      "privacy": "PRIVATE",
      "createdDate": "09/28/2016",
      "ownedBy": "tester"
    }
  ],
  "count": 5,
  "hasMore": true,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/savedqueries?limit=5"
    },
    {
      "rel": "next",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/savedqueries?offset=5&limit=5"
    }
  ]
}
Back to Top