Appearance
getComorbidities ​
Retrieves a list of comorbidities associated with a given condition.
Request ​
http
GET /rest/refdata/comorbiditiesQuery Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
conditionId | integer | Yes | Condition ID (from getConditions) |
Example ​
http
GET /rest/refdata/comorbidities?conditionId=86Response ​
200 OK ​
json
[
{
"conditionId": 128,
"conditionName": "Bonehealth and osteoperosis"
},
{
"conditionId": 127,
"conditionName": "Chronic Kidney disease (CKD)"
}
]| Field | Type | Description |
|---|---|---|
conditionId | integer | Primary key of the comorbid condition |
conditionName | string | Name of the comorbid condition |
Errors ​
| Exception | Cause |
|---|---|
WSRefDataServiceException | Service error while fetching comorbidities |