Skip to main content
POST
/
api
/
v1
/
auth
/
reset-password
Reset Password
curl --request POST \
  --url https://api.example.com/api/v1/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "new_password": "<string>"
}
'
{
  "message": "<string>"
}

Body

application/json

Request body for reset password.

token
string
required

Password reset token

new_password
string
required

New password (min 8 characters)

Minimum string length: 8

Response

Password reset successfully

Response for successful password reset.

message
string
required

Success message