Appearance
getConditionStages ​
Retrieves a list of condition stages for a given condition.
Request ​
http
GET /rest/refdata/condition-stagesQuery Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
conditionId | integer | Yes | Condition ID (from getConditions) |
Example ​
http
GET /rest/refdata/condition-stages?conditionId=86Response ​
200 OK ​
json
[
{
"conditionStageId": 3,
"conditionStageName": "Newly Diagnosed"
},
{
"conditionStageId": 4,
"conditionStageName": "Relapsed/Refractory"
}
]| Field | Type | Description |
|---|---|---|
conditionStageId | integer | Primary key of the condition stage |
conditionStageName | string | Name of the stage |
Errors ​
| Exception | Cause |
|---|---|
WSRefDataServiceException | Service error while fetching condition stages |