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
| Header | Description |
|---|---|
| Content-Type | Always application/json. |
| X-Requidex-Event | Event type (requisition_received). |
| X-Requidex-Event-Id | Unique event delivery id. |
| X-Requidex-Signature | HMAC SHA-256 signature of the raw request body. |
| X-Requidex-Timestamp | UTC 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"
}
}
}