This endpoint specifies what will be sent to your Create Employee Webhook. Zeal POSTs a request containing an The Employee Object once they have completed the onboarding process. You can update the webhook URL you want Zeal to hit in the 'API' page of the Zeal Dashboard.
Request Body
attribute | type | description |
---|---|---|
test | boolean | Whether the worker was "onboarded" in Test Mode |
companyID | string | Zeal companyID of Employer |
business_name | string | Business Name of Employer |
string | Other employee object fields |
Returns
Doesn't return anything, rather POSTs The Employee Object & data to the webhook URL
Raw Content Example
{
"test": false,
"companyID": "083472985",
"business_name": "Test Company",
"onboarded": false,
"employeeID": "1234567890",
"first_name": "Fake",
"last_name": "Employee",
"email": "[email protected]",
"title": "Manager",
"working_state": "CA",
"default_pay_schedule": "daily",
"default_wage": 20,
"default_ot_wage": 30,
"default_dt_wage": 40
}