Skip to main content

Worker Submitted to Requisition

Event Type

requisition_worker_submitted

Summary

Sent when an agency submits one or more new workers to a requisition, either in its initial response or a later amendment.

This event is available only to company-scoped webhooks. Agency-scoped webhooks cannot subscribe to it.

Fetch the Full Object

The payload contains the requisition's full object ID in data.requisition.id. Use that id as the {id} path parameter on GET /requisitions/{id} to fetch the latest requisition and agency submission details.

Delivery

  • Method: POST
  • Content-Type: application/json
  • Delivery guarantee: at-least-once

Payload Fields

FieldTypeRequiredDescription
idstringYesUnique webhook event id
typestringYesrequisition_worker_submitted
createdAtstringYesEvent creation timestamp
dataobjectYesEvent data
data.requisitionobjectYesRequisition reference
data.requisition.idstringYesFull object ID for the requisition

Payload Example

{
"id": "evt_01K1REQSUBMITTED0R9S8T7U6",
"type": "requisition_worker_submitted",
"createdAt": "2026-08-17T09:45:00.000Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}