Retrieves processing offices for each form type
Arguments
- form_types
Data frame from
uscis_form_types()
Path to cookie file
Value
Data frame of forms and their processing offices with the following columns:
- form_name
Character. The name/identifier of the USCIS form
- form_type
Character. Type classification of the form
- office_code
Character. The USCIS office location code
- office_description
Character. Description of the USCIS Office Code in English
Examples
if (FALSE) { # \dontrun{
# Initialize USCIS session
uscis_init_session()
# Retrieve USCIS forms
forms <- uscis_forms()
# Retrieve form types based on form names
form_types <- uscis_form_types(forms)
# Retrieve processing offices for each form type
form_offices <- uscis_form_offices(form_types)
head(form_offices)
} # }