cURL
curl --request POST \ --url https://jamquest-dev.techboo.net/api/v1/auth/reset-password \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "phone": "<string>" } '
{ "status": "ok", "message": "<string>" }
Initiates the password reset process for a user. A verification code will be sent to the user’s email or phone.
The email address of the user. Required if phone is not provided.
The phone number of the user. Required if email is not provided.
Password reset initiated successfully
"ok"