POST
/
api
/
auth
/
reset-password
/
request
curl --request POST \
  --url http://localhost/api/auth/reset-password/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'email=<string>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

email
string
required

Response

200
*/*
Password reset email sent
success
boolean