Employee Submitted a Form
Occurs when an employee submits a form. This can be tailored to trigger with all forms or only a specific form (any on your account, custom or otherwise) via a dropdown menu.
Data includes the employee who submitted the form and the submission.
Example payload:
{
"event_key": "employee.form_submitted",
"occurred_at": "2024-12-08T11:32:39.398-07:00",
"data": {
"employee": {
"id": 14,
"url": "/api/employees/14"
},
"submission": {
"id": 435,
"document_id": "w9",
"url": "/api/submissions/435"
}
}
}
Updated 4 months ago