Learn how to manage your users with QuickBlox.
user.full_name
user.email
user.login
user.phone
user.website
user.created_at
user.updated_at
user.last_request_at
user.external_user_id
user.facebook_id
user.twitter_id
user.blob_id
user.get_reset_password_token
user.get_confirmation_token
user.show_name
app.title
app.url
app.description
<title>
tag would be present in email subject.If you want to use your custom template, be aware that many mail servers disallow most of standard HTML tags.#{user.get_reset_password_token}
to reset password link to the template. For example, https://api.quickblox.com/password_reset?token=#{user.get_reset_password_token}
. Thus, when the user clicks on the emailed link, the token is going to be sent back to the application as part of the URL.PUT https://api.quickblox.com/update_password.json
.Pass the following parameters within the request body:user[reset_password_token]
user[password]
user[password_confirmation]
#{user.get_confirmation_token}
to the email confirmation link in the template. For example, https://api.quickblox.com/confirm_email?token=#{user.get_confirmation_token}
. Thus, when the user clicks on the emailed link, the token is going to be sent back to the application as part of the URL.