Retrieve Observation for an Observation Identifier

get

/ohfapi/cg/v3.3/patientapi/observations/{id}

This endpoint supports the retrieval of Observation for a single Observation Identifier. It returns the observation linked to the identifier.

Request

Supported Media Types
Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : Observation
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 : LinkedReference
Type: object
Show Source
Nested Schema : Encounter
Type: object
Show Source
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : Practitioner
Type: object
Model for a Practitioner, i.e. a person who is directly or indirectly involved in the provisioning of healthcare with a formal responsibility.
Show Source
Nested Schema : ReferenceRange
Type: object
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
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
Show Source
Nested Schema : CdmIdentifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : Location
Type: object
Show Source
Nested Schema : Number
Type: object
Nested Schema : Address
Type: object
Model for a postal address.
Show Source
Nested Schema : HumanName
Type: object
Model for a name of a human with text and parts information.
Show Source
Nested Schema : Telecom
Type: object
Show Source
Nested Schema : line
Type: array
Street name, number, direction & P.O. Box etc.
Show Source
Nested Schema : given
Type: array
Given names (not always 'first'). Includes middle names.
Show Source

400 Response

Invalid parameters supplied

404 Response

Observation not found
Back to Top

Examples

The following example submits a GET request.

API URL

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

Example of Response Body

The following example shows the response returned in JSON format.

{
     "identifier": {
         "system": "CDM",
         "value": "10001"
     },
     "category": {
         "coding": [
             {
                 "code": "OBTYPE1",
                 "display": "OBTYPE1name",
                 "description": "Observation Type Description"
             }
         ]
     },
     "code": {
         "coding": [
             {
                 "code": "1",
                 "display": "OBSV1",
                 "description": "Observation Description",
                 "sysId": "1",
                 "sysName": "Code System 1",
                 "sysVersion": "Version 1"
             }
         ]
     },
     "patient": {
         "reference": "/ohfapi/cg/v3.3/patientapi/patients/2"
     },
     "encounter": {
         "identifier": {
             "system": "CDM",
             "value": "ENC1"
         },
         "type": {
             "coding": [
                 {
                     "code": "1",
                     "display": "ENC_TYPE1",
                     "description": "ENC_TYPE_DESC1",
                     "sysId": "EHA_CUSTOM_CD_SYS",
                     "sysName": "EHA Custom Code System",
                     "sysVersion": "1"
                 }
             ]
         },
         "location": {
             "identifier": {
                 "system": "CDM",
                 "value": "1"
             },
             "name": "FAC1",
             "type": {
                 "coding": [
                     {
                         "code": "FAC_SUBTYP_RM",
                         "display": "Room",
                         "description": "A space allocated for a function within a building or a floor",
                         "sysId": "EHA_CUSTOM_CD_SYS",
                         "sysName": "EHA Custom Code System",
                         "sysVersion": "1"
                     }
                 ]
             }
         },
         "sequence": 10001
     },
     "performer": {
         "identifier": {
             "system": "CDM",
             "value": "SVCPRV1"
         },
         "type": {
             "coding": [
                 {
                     "code": "SVCPRV_TYP_CD_VALUE",
                     "display": "SVCPRV_TYP_CD_NAME",
                     "description": "SVCPRV_TYP_CD_DESC",
                     "sysId": "SVCPRV_TYP_CD_SYS",
                     "sysName": "Service Provider System",
                     "sysVersion": "2"
                 }
             ]
         },
         "specimenAliasIssuerFlag": "Y"
     },
     "valueQuantity": {
         "value": "20",
         "units": "cm",
         "code": "1",
         "description": "centi meter",
         "sysId": "1",
         "sysName": "UOM code",
         "sysVersion": "UOM version"
     },
     "valueCodeableConcept": {
         "coding": [
             {
                 "code": "1",
                 "display": "OBS_VAL1",
                 "description": "OBSV_VAL_VIN_DESC_1",
                 "sysId": "EHA_CUSTOM_CD_SYS",
                 "sysName": "EHA Custom Code System",
                 "sysVersion": "1"
             }
         ]
     },
     "valueString": "NOTE for OBSV CD ID",
     "specimenType": {
         "coding": [
             {
                 "code": "1",
                 "display": "SP1",
                 "description": "SP1Name",
                 "sysId": "EHA_CUSTOM_CD_SYS",
                 "sysName": "EHA Custom Code System",
                 "sysVersion": "1"
             }
         ]
     },
     "clinicalSpecimen": {
         "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/14212"
     },
     "patientcondition": {
         "reference": "/ohfapi/cg/v3.3/patientapi/conditions/10001"
     },
     "referenceRange": {
         "low": {
             "value": "30",
             "units": "cm",
             "code": "1",
             "description": "centi meter",
             "sysId": "1",
             "sysName": "UOM code",
             "sysVersion": "UOM version"
         },
         "high": {
             "value": "40",
             "units": "cm",
             "code": "1",
             "description": "centi meter",
             "sysId": "1",
             "sysName": "UOM code",
             "sysVersion": "UOM version"
         }
     },
     "effectiveDateTime": "12/14/1998"
 }
Back to Top