Find Providers Who Need to Be Suppressed
To find providers who need to be suppressed, get all providers who have a deactivated NPI:
GET /enterprise/accuracy/v1/Inspections?projectId=123456&SuppressReasons=NPIDeactivated
The results of the Eligibility Inspection for a provider whose NPI is deactivated look like this:
{
"group": "Eligibility",
"name": "NPI Deactivated",
"outcome": "Inaccurate",
"justification": null,
"recommendedAction": "Suppress",
"recommendedActionReasons": [
"NPIDeactivated"
]
} An outcome of Inaccurate in this context means that the NPI is deactivated. Accurate means that the NPI is still active.
If a provider needs to be suppressed, the supressReasons returned for that provider in recommendedActions are as follows:
"recommendedActions": {
"enrichReasons": [],
"investigateReasons": [],
"retainReasons": [],
"standardizeReasons": [],
"supplementReasons": [],
"suppressReasons": [
" NPIDeactivated "
],
"updateReasons": []
}