skip to Main Content

The Entrants settings define who is eligible and can participate in an Achievement.

ENTRANTS fields

EXAMPLES

» Member groups Array [String]

Mandatory

Select groups of entrants that can participate in the Achievement. The default is ALL registered members.

Please note that member groups can be pre created here but there will be no members registered to the group. How to register members into a group you can read about it here.

APP Example:

Member groupsALL

API Example:

{ 
   "jsonClass": "Achievement", 
   ... 
   "memberGroups": [], 
   ... 
}

APP Example 2:

Member groupsNewGroup

API Example 2:

{ 
   "jsonClass": "Achievement", 
   ... "memberGroups": 
   [ 
      NewGroup  
   ], 
   ... 
}

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

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

CONTINUE – Click Next and continue to the next step.

Back To Top