Skip to main content
POST
/
v1
/
api
/
auth
/
forgot-password
Request password reset email
curl --request POST \
  --url http://localhost:3091/v1/api/auth/forgot-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>"
}
'
"<string>"

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Body

application/json
email
string

Response

Reset email sent (if account exists)

The response is of type string.