GET api/MedicationsByUniqueName?uniqueName={uniqueName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uniqueName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
VW_MEDICATIONS| Name | Description | Type | Additional information |
|---|---|---|---|
| MED_ID | integer |
None. |
|
| GENERIC_NAME | string |
None. |
|
| DIV_ID | integer |
None. |
|
| BRAND_NAME | string |
None. |
|
| BRAND_ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"MED_ID": 1,
"GENERIC_NAME": "sample string 2",
"DIV_ID": 3,
"BRAND_NAME": "sample string 4",
"BRAND_ID": 1
}
application/octet-stream
Sample:
{"MED_ID":1,"GENERIC_NAME":"sample string 2","DIV_ID":3,"BRAND_NAME":"sample string 4","BRAND_ID":1}
application/xml, text/xml
Sample:
<VW_MEDICATIONS xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <MED_ID>1</MED_ID> <GENERIC_NAME>sample string 2</GENERIC_NAME> <DIV_ID>3</DIV_ID> <BRAND_NAME>sample string 4</BRAND_NAME> <BRAND_ID>1</BRAND_ID> </VW_MEDICATIONS>