Enable or disable Remote I-9 for a staff member.
Pass the following JSON to our Update Employment endpoint. Retrieve the Employment ID using the Get Employee Details endpoint.
If your organization has not enabled Remote I-9, these settings will be stored but won't be applied until the feature is enabled.
Remote Countersign: If remote countersign is enabled for the staff member: After submitting the I-9 form, they will be instructed to ask a 3rd party to review and verify the form's fields, documentation, and signature. If remote countersign is disabled for the staff member: After submitting the I-9 form, it will need to be reviewed and countersigned by an administrator.
Remote Reverification: If remote reverification is enabled for the staff member: After submitting their document(s) for reverification of work eligibility, they will be instructed to ask a 3rd party to review and verify the documentation and confirm they have verified it. If remote reverification is disabled for the staff member: When they are required to reverify employment eligibility, Supplement B will need to be reviewed and countersigned by an administrator.
{
"employment": {
"employee_document_options": {
"i9_remote_countersign_authorized": true,
"i9_remote_reverification_authorized": true
}
}
}
curl -X PATCH https://YOUR_SUBDOMAIN.workbright.com/api/employees/:employee_id/employments/:employment_id \
-H "API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "employment": {"employee_document_options": {"i9_remote_countersign_authorized": true, "i9_remote_reverification_authorized": true}} }'