Retrieve Clinical Specimens for a Condition Patient Record id

get

/ohfapi/cg/v3.3/patientapi/conditions/{id}/clinicalspecimens

This endpoint supports the retrieval of Clinical Specimens for a single Condition Patient record (row) id. It returns all the Clinical Specimen links for the given Condition Patient ID.

Request

Supported Media Types
Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : DiagnosisSpecimens
Type: object
Model for a Diagnosis Specimen object in CDM.
Show Source
Nested Schema : clinicalspecimens
Type: array
A list of links containing href to retrieve specimen details
Show Source
Example:
{href: '/patientapi/clinicalspecimens/{id}'}
Nested Schema : LinkedReference
Type: object
Show Source

400 Response

Invalid parameters supplied

404 Response

Clinical specimens not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/patientapi/conditions/10001/clinicalspecimens

Example of Response Body

The following example shows the response returned in JSON format.

{
   "patientcondition": {
      "reference": "/ohfapi/cg/v3.3/patientapi/conditions/10001"
}, 
"clinicalspecimens": [
  {
    "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/14214"
  },
  {
    "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/14215"
  }, 
  {
    "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/14212"
     }
    ]
} 
Back to Top