All Employee Forms Received
Occurs when an employee has submitted all required forms assigned to them. Data includes the employee who submitted the forms and all submissions.
Example payload:
{
"event_key": "employee.all_forms_received",
"occurred_at": "2024-12-08T22:32:39.398-07:00",
"data": {
"employee": {
"id": 14,
"url": "/api/employees/14"
},
"submissions": [
{
"id": 435,
"document_id": "w9",
"url": "/api/submissions/435"
},
// Other submissions...
]
}
}
Updated 4 months ago