Retrieve Clinical Specimens having Omics Data for Specimen Identifier

get

/HSDataService-web/api/3.2.0/{apiContext}/clinicalspecimens/{id}/hasOmicsData

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

Request

Supported Media Types
  • application/json
  • application/xml
Path Parameters
apiContext
Type: string
Required: true
Pattern: subjectapi|patientapi
Patient/Subject API context
id
Type: integer (int64)
Required: true
Patient/Subject Clinical Specimen Row ID

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Model for a Clinical Specimen object in CDM.
Root Schema : ClinicalSpecimen
Type: object
Model for a Clinical Specimen object in CDM.
Nested Schema : Collection
Type: object
Model for a Clinical Specimen Collection details object in CDM.
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : LinkedReference
Type: object
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.
Nested Schema : Quantity
Type: object
Model for a Quantity object in CDM.
Nested Schema : coding
Type: array
Read Only: true
Code(s) defined by a terminology system.
400 Response
Invalid parameters supplied
404 Response
Clinical specimen or clinical specimen metadata not found

Examples

The following example submits a GET request.

API URL — Patient Context

http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/clinicalspecimens/96/hasOmicsData

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "Specimen",
  "identifier": {
    "system": "CDM",
    "value": "96"
  },
  "patient": {
    "reference": "/HSDataService-web/api/3.2.0/patientapi/clinicalspecimens/96"
  }
}

API URL — Subject Context

http://localhost:7001/HSDataService-web/api/3.2.0/subjectapi/clinicalspecimens/97/hasOmicsData

Example of response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "Specimen",
  "identifier": {
    "system": "CDM",
    "value": "97"
  },
  "subject": {
    "reference": "/HSDataService-web/api/3.2.0/subjectapi/clinicalspecimens/97"
  }
}