Skip to content
TALA
Esc
navigateopen⌘Jpreview

This endpoint is only to be used on the forgot password page to request a password reset

POST/api/auth/request-password-reset
Request body
requiredapplication/json
emailstringrequired
Responses
200OK
any
500Internal Server Error
any
Try it
Server
Bodyapplication/json
Request
curl -X POST "http://localhost:8000/api/auth/request-password-reset" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "string"
}'
Response
{
  "message": "Please check your email and password"
}