All Employee Forms Received, Accepted, and Countersigned

Occurs when an employee has submitted all assigned forms (including optional), and they have been accepted by an administrator and countersigned if necessary. Data includes the employee who submitted the forms and all submissions.

Example payload:

{
  "event_key": "employee.all_submissions_finalized",
  "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...
    ]
  }
}