Jump to Content
WorkBright Developer HubGuidesAPI Endpoints
HomeGuidesRecipesAPI EndpointsChangelog
v1

GuidesAPI EndpointsLog InWorkBright Developer Hub
Guides
Log In
Current
All Employee Forms Received

Overview

  • Introduction
  • Authentication
  • Responses
  • Rate Limits
  • WorkBright API Agreement
  • List of Endpoints
  • Availability

Webhooks

  • Setup
  • List of Events
  • Payloads
    • Employee Submitted a Form
    • Form Submission Accepted by Administrator
    • Form Submission Rejected by Administrator
    • Form Submission Internal Fields Updated by Administrator
    • Authorized Representative Mismatch on Form I-9
    • Admin Requested a New Form Submission
    • Document Verification Results Marked as Reviewed by Admin
    • Form Submission Countersigned
    • All Employee Forms Received
    • All Employee Forms Received, Accepted, and Countersigned
    • All Required Employee Forms Received, Accepted, and Countersigned
    • E-Verify Case Details Updated
    • Employee Profile Updated
    • I9 Expiring Documents
    • Form I-9 Reverified
    • Form I-9 Restarted by Staff

Embedded Mode

  • Configuration
  • Embedded iframe
  • Embedded Android
  • postMessage API Events
Powered by 

All Employee Forms Received

Suggest Edits

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 10 months ago