Find Providers Who Have Not Responded in 90 Days
GET all data for all providers for a specific project. For example:
GET /enterprise/accuracy/v1/Inspections?projectId=123456
Search the response for all address1 elements that have a verified values date older than 90 days. For example, assuming that today’s date is 2023-01-15, the Provider practicing at 6460 Pentz Rd has not provided a new value for address1 in the past 90 days because the last verified value for address1 is 2022-08-04:
"address1": {
"sourceValue": "6460 PENTZ ROAD",
"standardizedValue": "6460 Pentz Rd",
"verifiedValues": [
{
"value": "6460 Pentz Rd",
"outcome": "Valid",
"source": "NppesTruth",
"date": "2022-08-04T22:30:41.636Z"
}
]
}