GET api/Icd10CmTable/GetIcd10CmIndexMainTerms?year={year}&type={type}
Get the main terms of ICD-10-CM Index in the ICD-10-CM Index XML file.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year |
Fiscal year |
integer |
Required |
| type |
Index type |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
IndexItemList| Name | Description | Type | Additional information |
|---|---|---|---|
| items | Collection of IndexItemModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"items": [
{
"title": "sample string 1",
"code": "sample string 2",
"see": "sample string 3",
"seeAlso": "sample string 4",
"seecat": "sample string 5",
"subcat": "sample string 6",
"manif": "sample string 7"
},
{
"title": "sample string 1",
"code": "sample string 2",
"see": "sample string 3",
"seeAlso": "sample string 4",
"seecat": "sample string 5",
"subcat": "sample string 6",
"manif": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<IndexItemList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediProvider.Models">
<items>
<IndexItemModel>
<code>sample string 2</code>
<manif>sample string 7</manif>
<see>sample string 3</see>
<seeAlso>sample string 4</seeAlso>
<seecat>sample string 5</seecat>
<subcat>sample string 6</subcat>
<title>sample string 1</title>
</IndexItemModel>
<IndexItemModel>
<code>sample string 2</code>
<manif>sample string 7</manif>
<see>sample string 3</see>
<seeAlso>sample string 4</seeAlso>
<seecat>sample string 5</seecat>
<subcat>sample string 6</subcat>
<title>sample string 1</title>
</IndexItemModel>
</items>
</IndexItemList>