Back to Resources
Technical Guide

Sample iGaming Gamification Event Payloads

Illustrative JSON event payloads for integrating Gamifly into your PAM.

1. Casino Round Completed

{
  "event_id": "evt_123456789",
  "event_type": "casino_round_completed",
  "timestamp": "2026-06-23T15:45:00Z",
  "player_id": "usr_98765xyz",
  "currency": "EUR",
  "data": {
    "game_id": "starburst_netent",
    "provider": "netent",
    "wager_amount": 5.00,
    "win_amount": 25.00,
    "multiplier": 5.0
  }
}

2. Sportsbook Bet Settled

{
  "event_id": "evt_987654321",
  "event_type": "sportsbook_bet_settled",
  "timestamp": "2026-06-23T16:00:00Z",
  "player_id": "usr_98765xyz",
  "currency": "EUR",
  "data": {
    "bet_id": "bet_abc123",
    "bet_type": "accumulator",
    "legs": 4,
    "wager_amount": 10.00,
    "win_amount": 150.00,
    "status": "won",
    "total_odds": 15.0
  }
}