Webhook
Webhook notification (your endpoint receives this)
Structure of the POST request Intuitivo sends to your configured webhook
endpoint when a transaction is updated. Your endpoint must respond 200 OK.
This documents the legacy event: "transaction" payload; the current
contract is the enveloped type: "transaction.update" shape (see the
Webhook notification guide).
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
curl -X POST "https://example.com/webhook" \ -H "Content-Type: application/json" \ -d '{ "event": "transaction", "data": { "transactionId": "cc97a50e-2411-449c-345b-1a7bf878e851", "products": [], "status": "pending" } }'Empty
