Create Employee Without Welcome Email

To skip the onboarding email for a staff member, just set "skip_onboarding_email" to true within the "employee" key. Otherwise, we default the value as 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",
           "skip_onboarding_email": true }
          }'

You will see the full employee object returned in the response, see Create Employee for details on return.

Because no welcome email is sent, you will need to retrieve a sign in link to sign in that staff member for the first time. This will be done using the Get Initial Sign In Link endpoint.