Notify transaction update
Webhooks
Notify transaction update
Manually dispatches a transaction update notification to all registered webhook endpoints for the specified organisation.
POST
Notify transaction update
Headers
Bearer JWT for user-facing flows (Bearer eyJraWQ...), or the literal string NONE when authenticating via API key.
Example:
"Bearer eyJraWQ..."
API key for server-to-server flows, or the literal string NONE when authenticating via JWT.
Example:
"pcx_abc123_xxxx"
Body
application/json
Organisation whose registered webhooks should receive the notification
Transaction payload to forward to registered webhook endpoints.
Example:
{
"transaction_id": "txn_abc123",
"status": "completed",
"amount": 500,
"currency": "USD",
"updated_at": "2024-01-15T10:30:00Z"
}