Skip to main content
POST
/
auth
/
reset-password
/
verify
Verify and set new password
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/auth/reset-password/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "verification_code": "<string>",
  "password": "<string>",
  "password_confirmation": "<string>",
  "email": "[email protected]",
  "phone": "<string>"
}
'
{
  "status": "ok",
  "message": "<string>"
}

Body

application/json
verification_code
string
required

The verification code sent to the user's email or phone.

password
string
required

The new password for the user.

Minimum string length: 8
password_confirmation
string
required

Confirmation of the new password.

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 successful

status
string
Example:

"ok"

message
string