
The Entrants settings define who can participate in the Competition and Contest, with information about Entrants, Limitations, and Terms and Conditions.
ENTRANTS fields
EXAMPLES
» Member group eligibility ObjectMandatory
| Select groups of entrants that can and cannot participate in the competition. By not selecting any entrants, the default is ALL registered members. |
» *Should match at least IntegerMandatory**
| *This section appears only when in the Member group eligibility field, the Should rule was implemented. |
» Automatically register members for this competition BooleanMandatory
Select whether participants do not require to register, or are required to register.
The default is Yes, meaning members do not require to register. |
» Terms and Conditions StringOptional
| The Terms and Conditions of the competition that players see in the leaderboard. |
APP Example:
| Member group eligibility: Must | Winter |
| Member group eligibility: Should | Beginner, Begginer2 |
| Member group eligibility: Must-not | VIP |
| Should match at least | 1 |
| Automatically register members for this competition | yes |
| Terms & Conditions | Log in and play! |
API Example:
{
"jsonClass": "Competition",
...
"options": {
...
"includeEntrantsWhere": {
"filters": [],
"must": [
"Winter"
],
"mustNot": [
"VIP"
],
"should": [
"Begginer2",
"Beginner"
],
"shouldMatchAtLeast": 1
},
"optinRequiredForEntrants": false,
"termsConditions": "Log in and play!",
...
}