Shift Event

POSTs request when a shift has been created, updated, or deleted in the Zeal dashboard.

This endpoint specifies what will be sent to your Shift Event Webhook. Zeal POSTs a request containing a pending Shift Object when they have been created, updated, or deleted in the dashboard. You can update and test the webhook URL you want Zeal to hit on the 'API' Page of the Zeal Dashboard.


Request Body

attributetypedescription
testbooleanWhether the Shift Event was created/updated/deleted in Test Mode
typestringThe operation that was applied to this shift.
create
update
delete
companyIDstringZeal companyID of Employer
business_namestringBusiness name of Employer

Other Shift Object fields.


Returns

Doesn't return anything but rather POSTs a request with any changes in the Shift Object to your webhook URL.


Raw Content Example

[
  {
    "test": true,
    "type": "update",
    "shiftID": "123678098765",
    "employeeID": "1234567890",
    "employeeCheckID": "1097456820203947",
    "status": "pending",
    "first_name": "Erlich",
    "last_name": "Bachman",
    "time": "2023-05-17T04:00:00Z",
    "metadata": {},
    "wcc_code": null,
    "workLocationID": 34567890,
    "hourly": {
      "hours": 7,
      "wage": 22
    },
    "reimbursement": {
      "amount": 15
    }
  }
]