Skip to main content

Requisition Filled

Event Type

requisition_filled

Summary

Sent when a requisition becomes filled.

Company webhooks receive this event for their requisitions. Agency webhooks receive it only when the requisition was released to, responded to, or supplied by that agency.

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_filled
createdAtstringYesEvent creation timestamp
dataobjectYesEvent data
data.requisitionobjectYesRequisition reference
data.requisition.idstringYesFull object ID for the requisition

Payload Example

{
"id": "evt_01K1REQFILLED9Q8R7S6T5U4",
"type": "requisition_filled",
"createdAt": "2026-08-10T09:30:00.000Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}