Dispatches a transaction update notification to all registered webhook endpoints for the specified organisation. Use this to push real-time transaction status changes (e.g. from pending to completed) to subscriber systems.
Documentation Index
Fetch the complete documentation index at: https://docs.pcxpay.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer JWT for user-facing flows (Bearer eyJraWQ...), or the literal string NONE when authenticating via API key.
"Bearer eyJraWQ..."
API key for server-to-server flows, or the literal string NONE when authenticating via JWT.
"pcx_abc123_xxxx"
Organisation whose registered webhooks should receive the notification
Arbitrary transaction payload to forward to the registered webhook endpoint(s). Typically includes transaction_id, status, amount, currency, and relevant timestamps.
{
"transaction_id": "txn_abc123",
"status": "completed",
"amount": 500,
"currency": "USD",
"updated_at": "2024-01-15T10:30:00Z"
}