GET api/ICD10/GetByICD9Code?ICD9Code={ICD9Code}&AllowApproximateMatch={AllowApproximateMatch}&AllowCombinationMatch={AllowCombinationMatch}

Looks at the GEM mapping tables and gets all the ICD10 codes that map to an ICD9 code.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ICD9Code

Any ICD9 Code, either formatted (with period) or unformatted

string

Required

AllowApproximateMatch

Return codes that are specified as approximate, but not exact matches in the GEM.

boolean

Default value is True

AllowCombinationMatch

Return codes when there are more than one GEM match

boolean

Default value is True

Body Parameters

None.

Response Information

Resource Description

The requested ICD9 Code and a collection of matched ICD10 codes (Json Serializable)

GetGEMMappedCodes_Response
NameDescriptionTypeAdditional information
SearchedICDCode

iICDCode

None.

Matches

Collection of iICDCode

None.

Response Formats

application/json, text/json

Sample:
{
  "SearchedICDCode": null,
  "Matches": null
}