Retrieve ICD10

Retrieves the details of a specific ICD-10 code.

Request

GET /clinical/v1/icd10/:code

Path Parameters


code string : required

The ICD-10 code to be fetched.


Query Parameters


No parameters

Example


curl -XGET 'https://platform.wellviasolutions.com/clinical/v1/icd10/`{icdcode}`' \
    -u 'Bearer:`{your_token}`'
GET https://platform.wellviasolutions.com/clinical/v1/icd10/`{icdcode}` HTTP/1.1
using WellViaSDK.Clinical;

const string apiSubscriptionKey = "your_api_subscription_key";
var _clnClient = new WellViaClinicalServiceClient(subscriptionKey: apiSubscriptionKey);

string icdCode = "`{icdcode}`";
var ic = await _clnClient.GetICD10CodeAsync(id: icdCode);

Response

A ICD-10 Object if a valid identifier was provided.