GET api/medications/basicSearch?name={name}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

Body Parameters

None.

Response Information

Resource Description

ListResponseOfSelfReportedMedicationSearchResult
NameDescriptionTypeAdditional information
Items

Collection of SelfReportedMedicationSearchResult

None.

Result

Result

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Name": "sample string 1",
      "NameWithRouteDoseForm": "sample string 2",
      "LexiGenDrugId": "sample string 3",
      "LexiDrugSynId": 1,
      "RxCUI": 1
    },
    {
      "Name": "sample string 1",
      "NameWithRouteDoseForm": "sample string 2",
      "LexiGenDrugId": "sample string 3",
      "LexiDrugSynId": 1,
      "RxCUI": 1
    }
  ],
  "Result": {
    "ResultCode": "sample string 1",
    "ResultDescription": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ListResponseOfSelfReportedMedicationSearchResult8Vkccj_Sk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DoseSpot.UI.API.DataContracts._13">
  <Result>
    <ResultCode>sample string 1</ResultCode>
    <ResultDescription>sample string 2</ResultDescription>
  </Result>
  <Items>
    <SelfReportedMedicationSearchResult>
      <LexiDrugSynId>1</LexiDrugSynId>
      <LexiGenDrugId>sample string 3</LexiGenDrugId>
      <Name>sample string 1</Name>
      <NameWithRouteDoseForm>sample string 2</NameWithRouteDoseForm>
      <RxCUI>1</RxCUI>
    </SelfReportedMedicationSearchResult>
    <SelfReportedMedicationSearchResult>
      <LexiDrugSynId>1</LexiDrugSynId>
      <LexiGenDrugId>sample string 3</LexiGenDrugId>
      <Name>sample string 1</Name>
      <NameWithRouteDoseForm>sample string 2</NameWithRouteDoseForm>
      <RxCUI>1</RxCUI>
    </SelfReportedMedicationSearchResult>
  </Items>
</ListResponseOfSelfReportedMedicationSearchResult8Vkccj_Sk>