Skip to main content

Requisition Received

Agency-only event

This webhook event is only available for agency-scoped webhook configurations.

Event Type

requisition_received

Summary

Agency-only event sent when a requisition is released to the agency. Selecting an agency on a draft or internally pending requisition does not send this event.

Release can happen manually, after final approval, or through a scheduled tier transition.

Fetch the Full Object

The webhook 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 full requisition object after receiving this event.

Delivery

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

Delivery Headers

HeaderDescription
Content-TypeAlways application/json.
X-Requidex-EventEvent type (requisition_received).
X-Requidex-Event-IdUnique event delivery id.
X-Requidex-SignatureHMAC SHA-256 signature of the raw request body.
X-Requidex-TimestampUTC timestamp used when signing the payload.

Payload Example

{
"id": "evt_01K1RECEIVED7R6Q5P4N3M2L1",
"type": "requisition_received",
"createdAt": "2026-07-28T10:30:00.000Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}