Create Employee Without Remote I-9 Enabled

If Remote I-9 is enabled on your account, it will automatically be enabled for all staff. You can disable it on a per staff basis by including the following JSON payload in a new employee using the Create Employee endpoint. The returned JSON payload will be the employee object as described in the Create Employee endpoint.

"employee": {
  "employment": {
    "employee_document_options": {
      "i9_remote_countersign_authorized": false,
      "i9_remote_reverification_authorized": false
    }
  }
}
curl -X POST https://YOUR_SUBDOMAIN.workbright.com/api/employees \
   -H "API-Key: YOUR_API_KEY" \
   -H "Content-Type: application/json" \
   -d '{ "employee": { "email":"[email protected]","first_name": "Emerald","last_name": "Keebler","employment": { "employee_document_options": { "i9_remote_countersign_authorized": false,"i9_remote_reverification_authorized": false }}}}'