Webhooks
Webhooks are a powerful way to receive real-time notifications of events from Gamanza Player Engagement Platform. Unlike traditional APIs, which require you to pull for data, webhooks push data to your endpoint as soon as an event occurs. This allows for more efficient and timely data handling.
How Webhooks Work
- Event Occurs: An event is triggered on our platform (e.g., a player level up, rank up, mission complete, etc).
- Webhook Triggered: Our system detects the event and sends an HTTP POST request to the webhook URL you have configured.
- Data Received: Your server receives the POST request, processes the data, and responds with a status code to acknowledge receipt.
Benefits of Using Webhooks
- Real-Time Data: Receive updates immediately as events happen.
- Efficiency: No need to constantly pull our API for changes, saving resources.
- Scalability: Handle large volumes of events efficiently.