Requisition Cancelled
Event Type
requisition_cancelled
Summary
Sent when a requisition is cancelled.
Company webhooks receive this event for their requisitions. Agency webhooks receive it only when the requisition was released to or responded to 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
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique webhook event id |
| type | string | Yes | requisition_cancelled |
| createdAt | string | Yes | Event creation timestamp |
| data | object | Yes | Event data |
| data.requisition | object | Yes | Requisition reference |
| data.requisition.id | string | Yes | Full object ID for the requisition |
Payload Example
{
"id": "evt_01K1REQCANCELLED8Q7R6S5T4",
"type": "requisition_cancelled",
"createdAt": "2026-08-10T09:15:00.000Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}