Employee E-Verify Update Webhook (Early Access)

POSTs request when there is an update to E-verify for an Employee.

This endpoint specifies what will be sent to your Employee E-verify Event Webhook. Zeal POSTs a request containing an Employee's E-verify information in the dashboard. You can update and test the webhook URL you want Zeal to hit on the 'API' Page of the Zeal Dashboard.

Request Body

attributetypedescription
testbooleanWhether the Event was updated in Test Mode
companyIDstringZeal companyID of Employer
employeeIDstringZeal employeeID of Employee
first_namestringFirst name of Employee
last_namestringLast name of Employee
business_namestringBusiness Name
everify_case_numberstringCase number of the E-Verify request
everify_statusstringHolds one of the following values:
IN_PROGRESS
PENDING_REFERRAL
REFERRED
SUCCESS
FAILURE
FAILURE_NO_SHOW
FAILURE_NO_ACTION
NOTE: For more information on these statuses refer to the everify_status field listed on the Employee Object.

Returns

Doesn't return anything but rather POSTs a request with the E-verify update to your webhook URL.


Raw Content Example

{
	"test": true,
  "companyID": "1eeec343485723ee58ufefhz",
  "business_name": "Test Company",
	"employeeID": "1eeec343485723ee58ufefhz",
	"first_name": "Erlich",
	"last_name": "Bachman",
	"everify_case_number": "2024270190310CF",
	"everify_status": "SUCCESS"
}