employee_checks processed as an array of employeeCheckID’s rather than an entire array of employee check objects. You can update the webhook URL you want Zeal to hit on the ‘API’ Page of the Zeal Dashboard.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A lite version of the Employer Check Processed Event Webhook that returns employee_checks as an array of employeeCheckIDs.
employee_checks processed as an array of employeeCheckID’s rather than an entire array of employee check objects. You can update the webhook URL you want Zeal to hit on the ‘API’ Page of the Zeal Dashboard.
| attribute | type | description |
|---|---|---|
| test | boolean | Whether the Employer Check was created in the Test Mode |
| companyID | string | Zeal companyID of Employer |
| business_name | string | Business Name of Employer |
| employerCheckID | string | Employer Check ID |
| status | string | Status of shift. Will hold the following values: processed |
| reporting_periods | array | List of reporting periods contained in this employer check. Show child attributes: reportingPeriodID - type: string - description: Reporting Period ID |
| totals | object | Totals for this employer check stored in an object. Show child attributes: gross_pay - type: number - description: Gross pay for an employee (total pay before taxes) net_pay - type: number - description: Net pay for an employee (total pay after taxes = gross_pay - total_employee_taxes)total_employer_taxes - type: number - required: Total amount of employer taxes company_debit - type: number - description: Total cost for the company ( net_pay + total_employee_taxes + total_employer_taxes)total_employee_taxes - type: number - description: Total amount of employee taxes for this employer check run |
| employee_checks | array | Returns array of all employeeCheckIDs moved to processed |
{
"test": true,
"companyID": "083472985",
"business_name": "Test Company",
"employerCheckID": "123456789",
"status": "processed",
"reporting_periods": [
"01739fc4cfd84c2e93dba5e802d1dda1"
],
"totals": {
"gross_pay": 40,
"net_pay": 36.94,
"total_employer_taxes": 3.06,
"company_debit": 43.06,
"total_employee_taxes": 3.06
},
"employee_checks": [
"9827465739"
],
"timestamp": "2024-01-21T21:29:42Z"
}