Registered users
This service returns the list of all the users registered for the challenge.
Since a user can register before the start date of a challenge, this service can help you partition your users between those who registered and those who did not. This can provide you with a simple way of notifying users who have not yet registered, or who have forgotten to register.
If you have your admin API key, you can try the API via this link.
Response
The table below summarizes the elements included in the RegisteredUsersResponse
object.
challengeId
string
Unique identifier of the challenge
status
string
Status of the users in the challenge
Possible values: ALL
, RANKED
, NOT_RANKED
count
int
Total number of users with the given status
users
array[object]
UserInfo
The table below summarizes the elements included in the UserInfo
object.
username
string
Unique identifier of the user
firstname
string
First name of the user
lastname
string
Last name of the user
registerDate
string
Date at which the user entered the challenge
Date format: YYYY-MM-dd’T’HH:mm:ss.SSSZ
Last updated