Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NAME

DESCRIPTION

event_id

The ID of the event

product_id

The ID of the product

timestamp

The date & time of when the message was created (UTC)

market id

The ID of the market

player id

The ID of the player

market specifiers

A | separated list of key=value-pairs. These are further specifiers for the market such as Spread. (Not always available)

 

XML Examples

Rollback Player Bet Settlements

Code Block
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rollback_player_bet_settlement product_id="4" event_id="match:347596" timestamp="1701104537152">
    <settlements>
        <market id="2000">
            <player player_id="25008438" specifier="spread=11.5"/>
            <player player_id="25008438" specifier="spread=10.5"/>
            <player player_id="25008453" specifier="spread=13.5"/>
        </market>
        <market id="2107">
            <player player_id="25008438" specifier="spread=11.5"/>
            <player player_id="25008438" specifier="spread=10.5"/>
            <player player_id="25008453" specifier="spread=13.5"/>
        </market>
        <market id="2104">
            <player player_id="25008438" specifier="spread=11.5"/>
            <player player_id="25008438" specifier="spread=10.5"/>
            <player player_id="25008453" specifier="spread=13.5"/>
        </market>
    </settlements>
</rollback_player_bet_settlement>

...