Skip to main content

Requisition Worker Rejected

Event Type

requisition_worker_rejected

Summary

Sent when a submitted worker is rejected.

For an agency-scoped webhook, delivery is limited to the agency that submitted the rejected worker. Fetch the requisition to read the agency's submission and rejection reason from agencies[].submissions.

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 details.

Delivery

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

Payload Fields

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

Payload Example

{
"id": "evt_01K1REQREJECTED0R9S8T7U6",
"type": "requisition_worker_rejected",
"createdAt": "2026-08-10T09:45:00.000Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}