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:
| Field | Description |
npi | 10-digit individual NPI |
first | Provider's first name |
last | Provider's last name |
type | Type of Provider |
Update Frequency
QUARTERLY
Examples
if (FALSE) { # interactive()
pending(type = "P", first = "John")
pending(type = "N", last = "Smith")
}