Notifications and tracking
A payout moves through asynchronous review, settlement, and execution stages. Axiym can notify your system when its status changes by delivering signed events to a webhook endpoint.
Key concepts
| Concept | Meaning |
|---|---|
| Event | A record that a payout changed. |
| Webhook | The HTTPS delivery carrying the event to your system. |
| Subscription | The registered endpoint that receives events. |
| Payout resource | The authoritative current state returned by the API. |
How they work together
An event is a signal that something changed, not a replacement for the payout resource. If your next action depends on the latest status, retrieve the payout through the authenticated Payment API integration.
A reliable integration uses all three
- Webhooks provide timely notification.
- API reads provide authoritative current state and complete details.
- Periodic reconciliation recovers from missed, delayed, or failed event processing.
Webhook delivery is at-least-once. Verify every signature, de-duplicate by the
event id, and do not depend on delivery order.
Continue with the Webhooks guide for registration, delivery, verification, and processing guidance.