Skip to main content
Version: 6.0.0

JoinGroupDivision

Similar to JoinGroupTournament(), except requires the division set id instead of the leaderboard id.

ServiceOperation
tournamentJOIN_GROUP_DIVISION

Method Parameters

ParameterDescription
divSetIdDivision set id.
tournamentCodeThe code for the group tournament to join.
groupIdMember's group id.
initialScoreThe initial score to give the group on the group leaderboard.

Usage

http://localhost:3000
string divSetId = "exampleDivSetId";
string tournamentCode = "exampleTournamentCode1";
string groupId = "the-group-id";
int initialScore = 0;
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.TournamentService.JoinGroupDivision(divSetId, tournamentCode, groupId, initialScore, successCallback, failureCallback);
JSON Response
{
"data": {
"createdAt": 1772655480000,
"leaderboardId": "^D^uniqueDivSetId2^1",
"enrolled": true
},
"status": 200
}