Condition 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 /Condition/1
Response:
{
    "resourceType": "Condition",
    "id": "1",
    "clinicalStatus": {
        "coding": [
            {
                "system": "http://hl7.org/fhir/condition-clinical",
                "code": "active"
            }
        ],
        "text": "Active"
    },
    "verificationStatus": {
        "coding": [
            {
                "system": "http://hl7.org/fhir/condition-ver-status",
                "code": "unconfirmed"
            }
        ],
        "text": "Unconfirmed"
    },
    "category": [
        {
            "coding": [
                {
                    "system": "http://hl7.org/fhir/condition-category",
                    "code": "problem-list-item"
                }
            ]
        }
    ],
    "code": {
        "coding": [
            {
                "system": "http://snomed.info/sct",
                "code": "235595009"
            }
        ],
        "text": "GERD - Gastro-esophageal reflux disease - KC"
    },
    "subject": {
        "reference": "https://fhir.pcisgold.com/fhir/Patient/1000.1000"
    }
}