GET api/Icd10PcsTable/GetIcd10PcsIndexMainTerms?year={year}&type={type}
Get the main terms of ICD-10-PCS Index in the ICD-10-PCS Index XML file.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
year |
Payment year |
integer |
Required |
type |
Index type |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PcsIndexItemListName | 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>