Skip to main content

Requisition Approved

Agency-scoped keys

This webhook event is not available for agency-scoped API keys.

Event Type

requisition_approved

Summary

Company-only event sent whenever a requisition approval stage is completed.

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: Company only
  • Method: POST
  • Content-Type: application/json
  • Delivery guarantee: at-least-once

Delivery Headers

HeaderDescription
Content-TypeAlways application/json.
X-Requidex-EventEvent type (requisition_approved).
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 Fields

FieldTypeRequiredDescription
idstringYes
typestringYes
createdAtstringYes
dataobjectYes
Show child attributes
  • requisition object

Payload Example

{
"id": "evt_01HYZ4KXQ45Y8RD6MKJJ6RRA5S",
"type": "requisition_approved",
"createdAt": "2026-02-24T16:11:02.003Z",
"data": {
"requisition": {
"id": "507f1f77bcf86cd799439011"
}
}
}