Skip to contents

Retrieves list of available USCIS forms

Usage

uscis_forms(cookie_file = "uscis.cookies")

Arguments

Path to cookie file

Value

A data frame with the following columns:

form_name

Character. The name/identifier of the USCIS form

form_description_en

Character. Description of the USCIS form in English

form_description_es

Character. Description of the USCIS form in Spanish

Examples

if (FALSE) { # \dontrun{
# Initialize USCIS session
uscis_init_session()

# Retrieve USCIS forms
forms <- uscis_forms()
head(forms)
} # }