This method allows you to retrieve all of the ICD-9 codes which are mapped to content to which you are licensed. This is not a complete list of ICD-9 codes, it is the subset of ICD-9 codes that is assigned to your licensed content.
This method is not generally meant for frequent use, but rather to assist you in integrating your systems with our content. For instance, the codes may be used to produce a list of topics that your application may use to match with a local database of topics.
The optional IncludeContent attribute, when set to true, will list each content object that is associated with each code.
Parameters: XmlRequest
<ICD9ListRequest IncludeContent="[true, false]" />
Sample Request
http://external.ws.staywell.com/[SiteName]/Content.svc/ListICD9Codes?xmlRequest=<ICD9ListRequest IncludeContent="true" />
Sample Result XML
<?xml version="1.0" encoding="utf-8" ?>
<ICD9List>
<ICD9Item code="011.9">
<ContentList>
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82443" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82444" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="85417" IsCustom="false" Blocked="false" ContentObjectType="Document" />
...
</ContentList>
</ICD9Item>
<ICD9Item code="011.90">
<ContentList>
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82443" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82444" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="85417" IsCustom="false" Blocked="false" ContentObjectType="Document" />
...
</ContentList>
</ICD9Item>
<ICD9Item code="099.9">
<ContentList>
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82197" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="82865" IsCustom="false" Blocked="false" ContentObjectType="Document" />
<ContentObject ViewCount="0" ContentTypeId="3" ContentId="85370" IsCustom="false" Blocked="false" ContentObjectType="Document" />
...
</ContentList>
</ICD9Item>
...
</ICD9List>