Jump to Content
WorkBright Developer HubGuidesAPI Endpoints
HomeGuidesRecipesAPI EndpointsChangelog
v1

GuidesAPI EndpointsLog InWorkBright Developer Hub
Guides
Log In
Current
Form Submission Countersigned

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 

Form Submission Countersigned

Suggest Edits

Occurs when Section 2 is countersigned for a Form-I9 submission. Data includes the employee who submitted the I-9 and the submission.

Example payload:

{
  "event_key": "employee.submission_countersigned",
  "occurred_at": "2024-12-08T22:32:39.398-07:00",
  "data": {
    "employee": {
      "id": 14,
      "url": "/api/employees/14"
    },
    "submission": {
      "id": 435,
      "document_id": "i9",
      "url": "/api/submissions/435"
    }
  }
}

Updated about 1 month ago