Observation Reponse
Possible status codes:
Status code 200 - success - the resource information is in the body as shown below.
Status code 400 - bad request - one or more request parameters was invalid.
Status code 401 - unauthorized (a valid bearer token is required).
Status code 404 - not found (the resource specified was not found).
Status code 500 - internal error.
Examples:
Request: GET /Observation/s.1
Response:
{
"resourceType": "Observation",
"id": "s.1",
"status": "final",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
"code": "social-history"
}
]
}
],
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "72166-2"
}
]
},
"subject": {
"reference": "https://fhir.pcisgold.com/fhir/Patient/1000.1000"
},
"effectiveDateTime": "2022-03-09",
"issued": "2022-03-09T10:33:00-07:00",
"valueCodeableConcept": {
"coding": [
{
"system": "http://loinc.org"
}
]
}
}