GET api/codebooks/Diagnosis?term={term}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| term | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SelectListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| StrId | string |
None. |
|
| Desc | string |
None. |
|
| Code | string |
None. |
|
| Checked | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"strId": "sample string 2",
"desc": "sample string 3",
"code": "sample string 4",
"checked": true
}
application/xml, text/xml
Sample:
<SelectListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMedit.BDO.HelperModels"> <Checked>true</Checked> <Code>sample string 4</Code> <Desc>sample string 3</Desc> <Id>1</Id> <StrId>sample string 2</StrId> </SelectListViewModel>