Skip to content

getConditionMedications ​

Retrieves a list of medications associated with a given condition and country.

Request ​

http
GET /rest/refdata/condition-medications

Query Parameters ​

ParameterTypeRequiredDescription
conditionIdintegerYesCondition ID (from getConditions)
countryCodestringYes2-character ISO country code

Example ​

http
GET /rest/refdata/condition-medications?conditionId=86&countryCode=AU

Response ​

200 OK ​

json
[
  {
    "medicationId": 1,
    "countryCode": "AU",
    "name": "Humira",
    "manufacturer": "AbbVie",
    "tradeName": "Humira",
    "genericName": "adalimumab"
  }
]
FieldTypeDescription
medicationIdintegerPrimary key of the medication
countryCodestringISO country code
namestringDisplay name of the medication
manufacturerstringManufacturer name
tradeNamestringTrade/brand name
genericNamestringGeneric/chemical name

Errors ​

ExceptionCause
WSRefDataServiceExceptionService error while fetching condition medications