POST | /codecheck/ccicodecheck | Validates CCI | Validates CCI |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
providerType | path | string | No | Provider Type. H = Hospital, P = Physician |
cptCodes | path | List | No | CPT Codes (max of 50) |
effectiveDate | path | DateTime | No | Effective Date |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/CCICodeCheck HTTP/1.1
Host: api.vitalware.com
Content-Type: text/jsv
Content-Length: length
{
providerType: String,
cptCodes:
[
String
],
effectiveDate: 0001-01-01
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { request: { providerType: String, cptCodes: [ String ], effectiveDate: 0001-01-01 }, response: [ { code: String, codeType: String, tranFacilityRvu: 0, tranNonFacilityRvu: 0, cciIssue: String, shortDescription: String, longDescription: String } ], responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String } ] } }