Big Win Widget
Automatically posting of user accomplishments from a primary platform in a chat
Overview
The "Big Win / Big X" widget is designed for integration into partner application chats, allowing users to share their large winnings (Big Win) or high odds (Big X). The widget automates chat publication on users’ winnings.
Technical requirements for widget formation
To create the "Big Win / Big X" widget, the following data must be provided:
- Game icon / image: URL to the image that will be displayed on the widget.
- Title: The name of the game or event, passed as a string.
- Text: Description of the type of win, for example, "Big Win" or "Big X".
- Text in pseudo-button: Winning status or odds in string format, for example, "won $12,000" or "x100500".
- Game link: URL that will open the game when the widget is clicked. Ideally, the partner should have a mechanism for recognizing the source of the game opening.
- Time stamp: The date and time when the event (winning) occurred, passed in the ISO 8601 format, for example, "2024-05-10T12:00:00Z".
The partner automatically publishes Big Win and Big X in chat
The partner provides a feed with winnings data, which our system will parse for automatic widget publication in chats. The frequency of publication can be adjusted depending on the amount of winnings or the time interval between publications.
Feed data format:
{
"events": [
{
"widgetTitle": "Lucky Spin",
"widgetText": "Big Win",
"buttonText": "won $5,000",
"iconUrl": "<https://example.com/icons/lucky-spin.png>",
"gameUrl": "<https://example.com/games/lucky-spin>",
"timestamp": "2024-05-10T12:00:00Z"
}
]
}
Integration and Use
For successful integration of the "Big Win / Big X" widget, partners need to implement the appropriate APIs for handling requests and data feeds, as well as configure link tracking mechanisms. Widget publication can be optimized for interaction with users on the Watchers side based on chat activity and partner preferences.
Updated 3 months ago