Open Tournament Summary
  • Overview
  • Guiding Principles
  • JSON Object
  • Storage Format
  • Standardized Tournament Summary
    • The Specification
    • spec_version
    • site_name
    • network_name
    • internal_version
    • tournament_number
    • tournament_name
    • start_date_utc
    • end_date_utc
    • currency
    • buyin_amount
    • fee_amount
    • bounty_fee_amount
    • bounty_value_amount
    • initial_stack
    • type
    • flags
    • speed
    • prize_pool
    • hero_player_name
    • player_count
    • tournament_finishes_and_winnings
    • rebuy_cost
    • addon_cost
    • tournament_rebuys
  • speed object
    • <speed_object>
    • type
    • round_time
  • Tournament Finish Object
    • <tournament_finish_obj>
    • player_name
    • finish_position
    • still_playing
    • prize
    • ticket_value
  • TOURNAMENT REBUY OBJECT
    • <tournament_rebuy_obj>
    • player_name
    • rebuys
    • addons
  • String Formats
    • version_string
  • Examples
    • Sample Sit N' Go
    • More coming soon.
  • Contact Us
    • Change Request Process
    • Support
  • CHANGE LOG
    • Change Log
Powered by GitBook
On this page

Was this helpful?

  1. Tournament Finish Object

<tournament_finish_obj>

Object containing a tournament player's place of finish and winnings.

tournament_finish_obj

Object containing a tournament player's place of finish and winnings.

Type: object

Example:

Player finished third, and won 10.00:

"tournament_finish": {
	"player_name": "My Player 1",
	"finish_position": 3,
	"still_playing": false,
	"prize": 10.00,
	"ticket_value": 0.00
}

Player has not yet been eliminated from the tournament:

"tournament_finish": {
	"player_name": "My Player 2",
	"still_playing": true,
}
Previousround_timeNextplayer_name

Last updated 3 years ago

Was this helpful?