Skip to contents

Information on revalidation due dates for Medicare providers. Medicare Providers must validate their enrollment record every three or five years. CMS sets every Provider’s Revalidation due date at the end of a month and posts the upcoming six to seven months of due dates online. A due date of ‘TBD’ means that CMS has not set the due date yet. These lists are refreshed every two months and two months’ worth of due dates are appended to the list

Usage

revalidation_date(
  npi = NULL,
  enroll_id = NULL,
  first = NULL,
  last = NULL,
  organization = NULL,
  state = NULL,
  enrollment_type = NULL,
  specialty_description = NULL,
  tidy = TRUE,
  na.rm = TRUE
)

Arguments

npi

< integer > 10-digit national provider identifier

enroll_id

< character > 15-digit provider enrollment ID

first, last

< character > Individual provider's first/last name

organization

< character > Organizational provider's legal business name

state

< character > Enrollment state

enrollment_type

< integer > Provider enrollment type:

  • 1: Part A

  • 2: DME

  • 3: Non-DME Part B

specialty_description

< character > Enrollment specialty

tidy

Tidy output; default is TRUE

na.rm

< boolean > Remove empty rows and columns; default is TRUE

Value

A tibble containing the search results.

Details

The Revalidation Due Date List dataset contains revalidation due dates for Medicare providers who are due to revalidate in the following six months. If a provider's due date does not fall within the ensuing six months, the due date is marked 'TBD'. In addition the dataset also includes subfiles with reassignment information for a given provider as well as due date listings for clinics and group practices and their providers.

Links:

Update Frequency: Monthly

Examples

if (FALSE) { # interactive()
revalidation_date(enroll_id = "I20031110000070")
revalidation_date(enroll_id = "O20110620000324")
revalidation_date(state = "FL", enrollment_type = 3, specialty = "General Practice")
}