GET api/Icd10PcsApi?year={year}&type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year | integer |
Required |
|
| type | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PcsIndexItemList| Name | Description | Type | Additional information |
|---|---|---|---|
| items | Collection of PcsIndexItemModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"items": [
{
"title": "sample string 1",
"code": "sample string 2",
"codes": "sample string 3",
"see": "sample string 4",
"tab": "sample string 5",
"use": "sample string 6"
},
{
"title": "sample string 1",
"code": "sample string 2",
"codes": "sample string 3",
"see": "sample string 4",
"tab": "sample string 5",
"use": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<PcsIndexItemList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediProvider.Models">
<items>
<PcsIndexItemModel>
<code>sample string 2</code>
<codes>sample string 3</codes>
<see>sample string 4</see>
<tab>sample string 5</tab>
<title>sample string 1</title>
<use>sample string 6</use>
</PcsIndexItemModel>
<PcsIndexItemModel>
<code>sample string 2</code>
<codes>sample string 3</codes>
<see>sample string 4</see>
<tab>sample string 5</tab>
<title>sample string 1</title>
<use>sample string 6</use>
</PcsIndexItemModel>
</items>
</PcsIndexItemList>