POST api/ICD10
Retrieves an ICD10 code from the database.
Request Information
URI Parameters
None.
Body Parameters
ICDRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ICDCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ICDCode": "sample string 1"
}
application/xml, text/xml
Sample:
<ICDRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ICDCode>sample string 1</ICDCode> </ICDRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ICD10 Model Object
ICD10| Name | Description | Type | Additional information |
|---|---|---|---|
| ICDCode | string |
None. |
|
| ICD10Code | string |
None. |
|
| ICD10Plain | string |
None. |
|
| IsHeader | boolean |
None. |
|
| CodeType | ICDCodeTypes |
None. |
|
| RowID | integer |
None. |
|
| Description | string |
None. |
|
| ShortDescription | string |
None. |
|
| LastModTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ICDCode": "sample string 2",
"ICD10Code": "sample string 2",
"ICD10Plain": "sample string 3",
"IsHeader": true,
"CodeType": 0,
"RowID": 5,
"Description": "sample string 6",
"ShortDescription": "sample string 7",
"LastModTime": "2025-10-28T12:57:07.2229968-07:00"
}
application/xml, text/xml
Sample:
<ICD10 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsHeader>true</IsHeader> <CodeType>Unknown</CodeType> <RowID>5</RowID> <Description>sample string 6</Description> <ShortDescription>sample string 7</ShortDescription> <LastModTime>2025-10-28T12:57:07.2229968-07:00</LastModTime> <ICDCode>sample string 2</ICDCode> <ICD10Code>sample string 2</ICD10Code> <ICD10Plain>sample string 3</ICD10Plain> </ICD10>