Skip to contents

[Questioning]

pending() allows the user to search for providers with pending Medicare enrollment applications.

Usage

pending(
  type = c("P", "N"),
  npi = NULL,
  first = NULL,
  last = NULL,
  tidy = TRUE,
  ...
)

Arguments

type

< character > // default: "P"

Physician (P) or Non-physician (N)

npi

< integer >

10-digit National Provider Identifier

first, last

< character >

Provider's name

tidy

< boolean > // default: TRUE

Tidy output

...

Empty

Value

A tibble() with the columns:

FieldDescription
npi10-digit individual NPI
firstProvider's first name
lastProvider's last name
typeType of Provider

Update Frequency

QUARTERLY

Examples

if (FALSE) { # interactive()

pending(type = "P", first = "John")

pending(type = "N", last = "Smith")
}