Skip to main content
POST
/
api
/
v1
/
auth
/
reset-password
Reset user password
curl --request POST \
  --url http://localhost:7701/api/v1/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "a1b2c3d4e5f6...",
  "password": "newSecret123",
  "password_confirmation": "newSecret123"
}
'
{
  "message": "Password reset successfully."
}

Body

application/json
token
string
required
Example:

"a1b2c3d4e5f6..."

password
string<password>
required
Minimum string length: 8
Example:

"newSecret123"

password_confirmation
string<password>
required
Example:

"newSecret123"

Response

Password reset successfully

message
string
Example:

"Password reset successfully."