skip to Main Content

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 Object

Mandatory

Select groups of entrants that can and cannot participate in the competition. By not selecting any entrants, the default is ALL registered members.

To see all the possibilities of member group participation, read the Member group eligibility section here.

For more on how to create members and add them to groups in the APP, navigate to Members → Members List. You can read more about member creation here.

» *Should match at least Integer

Mandatory**

*This section appears only when in the Member group eligibility field, the Should rule was implemented.

When only one Should group was selected in the Member group eligibility field, the group is automatically converted to a Must rule when you move to the next steps.

**When two or more Should member groups were selected, then the Should match at least field becomes mandatory.

» Automatically register members for this competition Boolean

Mandatory

Select whether participants do not require to register, or are required to register.
  • Yes – members are automatically registered
  • No – requires members to register manually for the competition.

The default is Yes, meaning members do not require to register.

 

» Terms and Conditions String

Optional

The Terms and Conditions of the competition that players see in the leaderboard.
Leaving the Terms & Conditions box blank hides the terms and conditions displayed in the example Leaderboard sample JavaScript

APP Example:

Member group eligibility: MustWinter
Member group eligibility: ShouldBeginner, Begginer2
Member group eligibility: Must-notVIP
Should match at least1
Automatically register
members for this
competition
yes
Terms & ConditionsLog 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!",
               ...
}

The API example provides only a simplified version of the POST body. A full example of POST Competition can be found in the Competitions APP API documentation here

PREVIOUS – Click Previous to go back to the previous step.

CONTINUE – Click Next and continue to the next step.

Back To Top