Games
Endpoint for updating games in real-time (Unibo)
REST API
RabbitMQ Connector
Kafka Connector
⬆️ POST /v1/integration/game
RabbitMQ Message Properties
key | value |
---|---|
type | GAME |
The type is expected as a property (but not in the payload) of the RabbitMQ Message. Any header will be ignored.
Kafka Message Headers
key | value |
---|---|
type | GAME |
- This endpoint will let you upsert (insert or update) games
- You should publish:
- any newly added games
- any updates to existing games
is_live - true, false determines whether the game is active in the system or not (soft delete)
Request:
Key | Type | Required? | Accepted Values | Description |
---|---|---|---|---|
game_id | string | Yes | N/A | Unique ID |
name | string | No | N/A | The name of the game |
slug | string | No | N/A | Game slug |
provider | string | No | N/A | Game provider |
category | string | No | N/A | Game category |
subcategory | string | No | N/A | Game subcategory |
supported_devices | array of string | No | "mobile", "desktop", "app", "unknown" | An array of supported devices |
is_live | boolean | Yes | true, false | Soft deletes the game from the system |