Retrieve Clinical Specimens having Omics Data for Specimen Identifiers

get

/ohfapi/cg/v3.3/{apiContext}/clinicalspecimens/hasOmicsData

This endpoint supports the retrieval of the Patient/Subject Clinical Specimens, which have at least one corresponding Omics Specimen, for the multiple Clinical Specimen Row IDs. It returns Paginated list of the Patient/Subject Clinical Specimens information like Identifier and Reference Link to the Patient/Subject details. If none of submitted Specimens has Omics Data, API returns 'Not Found' exception.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Collection Format: multi
    Minimum Number of Items: 1
    Maximum Number of Items: 2147483647
    Patient/Subject Clinical Specimen Row IDs List
  • Pagination query params: ?limit=2&offset=0
  • Pagination query params: ?limit=2&offset=0
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollectionClinicalSpecimen
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : ClinicalSpecimen
Type: object
Model for a Clinical Specimen object in CDM.
Show Source
Nested Schema : Collection
Type: object
Model for a Clinical Specimen Collection details object in CDM.
Show Source
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
Show Source
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : LinkedReference
Type: object
Show Source
Nested Schema : CodeableConcept
Type: object
Model that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Show Source
Nested Schema : Quantity
Type: object
Model for a Quantity object in CDM.
Show Source
Nested Schema : coding
Type: array
Read Only: true
Code(s) defined by a terminology system.
Show Source

400 Response

Invalid parameters supplied

404 Response

Clinical specimen or clinical specimen metadata not found
Back to Top

Examples

The following example submits a GET request.

API URL ??? Patient Context

http://localhost:7010/ohfapi/cg/v3.3/patientapi/clinicalspecimens/hasOmicsData?id=96&id=97&limit=20&offset=0

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "Specimen",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "96"
      },
      "patient": {
        "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/96"
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "97"
      },
      "patient": {
        "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/97"
      }
    }
  ],
  "count": 2,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/patientapi/clinicalspecimens/hasOmicsData?id=96&id=97&limit=20&offset=0"
    }
  ]
}

API URL ??? Subject Context

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/hasOmicsData?id=96&id=97&limit=20&offset=0

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "Specimen",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "96"
      },
      "subject": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/96"
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "97"
      },
      "subject": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/97"
      }
    }
  ],
  "count": 2,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/hasOmicsData?id=96&id=97&limit=20&offset=0"
    }
  ]
}
Back to Top