-
Notifications
You must be signed in to change notification settings - Fork 10
5. Participants
Kyle edited this page Aug 4, 2022
·
3 revisions
$params = [
'name' => "Updated Player 1",
];
$participant->update($params);You can see all available params here: http://api.challonge.com/v1/documents/participants/create
Updates the participant attributes.
$participant->delete();Deletes the participant.
$challonge->getParticipants('teamreflex-bracket1');Returns Reflex\Challonge\DTO\Participant instances per participant.
$challonge->randomizeParticipants('teamreflex-bracket1');Returns Reflex\Challonge\DTO\Participant instances per participant.
$challonge->getParticipants('teamreflex-bracket1', 'participantId');Returns a Reflex\Challonge\DTO\Participant instance of the given participant in a tournament.