Reset password with a token
POST
/auth/v1/password/reset/confirmResets the user's password using a valid reset token and the supplied new password.
Request Body
requiredapplication/json{
"$ref": "#/components/schemas/internal_auth.resetPasswordBody",
"$ref-value": {
"properties": {
"new_password": {
"minLength": 8,
"type": "string"
},
"token": {
"type": "string"
}
},
"required": [
"new_password",
"token"
],
"type": "object"
}
}Response Body
204
No Content
curl -X POST "https://api.rixl.com/auth/v1/password/reset/confirm" \
-H "Content-Type: application/json" \
-d '{
"new_password": "stringst",
"token": "string"
}'No Content