curl -X GET \
-H "QB-Token: 1e0bad9d9830c038ea19f12d83fca4e984012bba" \
https://api.quickblox.com/users/password/reset.json?email=usermail@quickblox.com
Empty body
{
"errors": {
"base": [
"You are not allowed to modify this user"
]
}
}
null
{
"errors": {
"id": [
"should be a positive integer"
]
}
}
Users
Reset User Password
Reset a user password by email.
GET
/
users
/
password
/
reset.json
curl -X GET \
-H "QB-Token: 1e0bad9d9830c038ea19f12d83fca4e984012bba" \
https://api.quickblox.com/users/password/reset.json?email=usermail@quickblox.com
Empty body
{
"errors": {
"base": [
"You are not allowed to modify this user"
]
}
}
null
{
"errors": {
"id": [
"should be a positive integer"
]
}
}
Recipes
Reset user password with API key
Reset user password with API key
1
1. Use 'Authorization' header to pass API key
curl -X GET \
-H 'Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI' \
https://api.quickblox.com/users/password/reset.json?email=usermail@quickblox.com
2
2. As a result, the API send reset password instruction
curl -X GET \
-H 'Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI' \
https://api.quickblox.com/users/password/reset.json?email=usermail@quickblox.com
By default, this feature is turned off for Basic, Startup and Growth plans. Contact the sales team.
Query Parameters
string
required
User’s email.
Headers
string
required
A user session token. See Authentication page to learn more about the session token.
string
default:"ApiKey {your_api_key}"
required
API key from Dashboard. Expected format:
ApiKey {your_api_key}. Must be used either QB-Token or Authorization.Responses
200
200
A successful response
404
404
An error response
curl -X GET \
-H "QB-Token: 1e0bad9d9830c038ea19f12d83fca4e984012bba" \
https://api.quickblox.com/users/password/reset.json?email=usermail@quickblox.com
Empty body
{
"errors": {
"base": [
"You are not allowed to modify this user"
]
}
}
null
{
"errors": {
"id": [
"should be a positive integer"
]
}
}
Was this page helpful?