Skip to content

adhocteam/i9everywhere-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

I9Everywhere API Python library and CLI

Python client library and CLI for the I9Everywhere API V4.

This is a Python client library and CLI that interacts with the I9EverywhereClient API to add and retrieve customer data.

Requirements

  • Python 3.6 or higher
  • click library
  • pathlib library

Installation

  1. Install Python 3.6 or higher
  2. Install the required libraries using pip: pip install click pathlib i9-everywhere-client

Usage

The CLI program i9everywhere has four main commands:

  • add_customer - adds a single customer to I9Everywhere. Required parameters are first_name, last_name, email, hire_date, and create_date. Optional parameters are company_id, phone_mobile, and external_id.
  • add_customers - adds multiple customers to I9Everywhere. The customers are provided in CSV format, either from a file given by --csv_file or read from standard input. The CSV file must have a header row with the same names as the paramters as add_customer. For example:
first_name,last_name,email,hire_date,create_date
Ethan,Williams,[email protected],4/18/2023,4/18/2023
Madison,Johnson,[email protected],4/18/2023,4/18/2023
Aiden,Brown,[email protected],4/18/2023,4/18/2023
Olivia,Davis,[email protected],4/18/2023,4/18/2023
Benjamin,Garcia,[email protected],4/18/2023,4/18/2023
Sophia,Wilson,[email protected],4/18/2023,4/18/2023
Jacob,Rodriguez,[email protected],4/18/2023,4/18/2023
Isabella,Martinez,[email protected],4/18/2023,4/18/2023
Michael,Anderson,[email protected],4/18/2023,4/18/2023
Emma,Smith,[email protected],4/18/2023,4/18/2023
  • get_customer_status - retrieves the I9 form status for a single customer. Required parameter is hire_date, plus at least one of email, ssn, or external_id.
  • update_termination_date - not yet implemented.
  • update_hire_date - not yet implemented.

The CLI requires an authentication key to access the I9Everywhere API. The key can be provided as a command-line argument using the --auth_key option or as an environment variable named I9_EVERYWHERE_API_KEY.

Example

Add a customer with the following details:

  • First name: John
  • Last name: Doe
  • Email: [email protected]
  • Hire date: 04/18/2022
  • Create date: today's date
  • Company ID: 1234
  • Mobile phone: +1 (555) 555-1212
  • External ID: 5678
i9everywhere add_customer --auth_key <your_auth_key> --first_name John --last_name Doe --email [email protected] --hire_date 04/18/2022 --company_id 1234 --phone_mobile "+1 (555) 555-1212" --external_id 5678

About

Python client library and CLI for I9 Everywhere API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages