Skip to main content
POST
/
auth
/
reset-password
Request password reset
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>"
}

Body

application/json
email
string<email>

The email address of the user. Required if phone is not provided.

phone
string

The phone number of the user. Required if email is not provided.

Response

Password reset initiated successfully

status
string
Example:

"ok"

message
string