Auth

Sends a password reset email to the user

POST
/api/v1/auth/forgot
/api/v1/auth/forgot

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The email address of the user

email
Required
string

Minimum length: 1Format: "email"
curl -X POST "https://example.com/api/v1/auth/forgot" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]"
  }'

OK