Skip to main content
POST
/
api
/
auth
/
reset-password
Request password reset
curl --request POST \
  --url https://payments.oaknetwork.org/api/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com"
}
'
{
  "msg": "Reset password link emailed to user!",
  "data": null
}

Body

application/json
email
string<email>
required

Email address associated with the account

Example:

"user@example.com"

Response

Password reset link sent

msg
string
required

Human-readable message describing the result

data
any
required

Response payload (null on error)