As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Where are the additional field? I only see username and password.
Terrick Mansur
Hi,
Im trying to have my users sign up with username and email, and have Kinvey check if they are unique. The sign up with username works but when I enforce the email and my user settings, is says that I am missing the email parameter in my request. Here is the code i have in Swift sending the Signup request.
{
CustomUser.activeUser().email = "my@email.com"
CustomUser.signup(username: username, password: password, client: Kinvey.sharedClient, completionHandler:handleSignUpResponse())
}
I though this might work since I have the email set but this is not the case. How can I send the email parameter with the signup request?
Thank