By integrating with the Unibo Consumer, you'll be able to send events that will be processed by our system. This is a crucial step towards connecting your application to ours, and it's essential to get this part right.
The service is specifically designed to receive critical events in real-time, such as:
- : Player bets for () in at ().
- : Player wins () in at (, the bet above).
- : Player deposited
Additionally, the Unibo Consumer may also receive optional updates to:
- : Player registered at (etc.)
- : There's a new Game () with category from (etc.)
Both Players and Games might also be exposed in a different way, Unibo needs it to properly target our campaigns based on segmentation configured by Casino Operators.
For the most up-to-date and detailed information please refer directly to the service itself at https://consumer.unibo.io . It provides human-readable documentation in the form of a Swagger interface. For convenience, we also provide an OpenAPI specification ( openapi.json ). The primary endpoint for sending events is:
Please note that this endpoint is specifically designed to receive batches of events in JSON format. We recommend using our interactive documentation as your primary source for understanding the API's requirements and capabilities.
There's few more topics worth highlighting:
To ensure accurate processing of events, please ensure the following:
- : Our service deduplicates events based on their unique
unique_id
field. Make sure this field is correctly populated with a unique identifier for each event. This prevents duplicates if there's some kind of network connection issue, so you can easily retry sending us a whole batch of events, even if we managed to receive it already or just processed half and crashed for some reason. - : Attach a timestamp to each event itself that reflects when the event took place. For example, if sending an event related to a bet being made, include the timestamp of when the bet was actually placed. This is crucial for processing our campaigns and also for latency monitoring. We get alerted when the events we receive are delayed and we can act on it accordingly.
For instance:
{
"data": {
"unique_id": "9cd823d3fe",
"timestamp": "2024-12-12T12:17:53.988Z",
"player_id": "StQ-1",
"game_id": "GD8",
"round_id": "f7ltidMBAwexDojlJBY",
"amount": 0.5,
"currency": "EUR",
"is_win": false,
"is_bonus": false
},
"event": "gameround"
}
To ensure timely processing of events, it's essential to send them to our service with minimal delay. We recommend collecting events in batches based on time and event-count:
- :
- Collect events for up to 500ms before sending the batch.
- :
- Collect up to 10,000 events before sending the batch. If more than 10,000 events are collected within the 500ms time frame, the excess events will be sent as separate batches.
This approach ensures that events are not delayed unnecessarily while also preventing an excessive number of small batches from being sent.
If the tenant (both your infrastructure and casino itself) is located in a different geographical place than the main instance (Ireland), we can spin up an infrastructure instance there to reduce latency. Please reach out to us for more information on this aspect of our services.