User
Send a password reset email to an existing user. Wait at least 60 seconds between successive calls
accessBearerAuth In the value field below, fill in the access token. It has a 10 minutes validity period. A valid token can be obtained via the /accesstoken endpoint (call), AFTER authorization with refreshBearerAuth and the refresh token.
In: header
The mail configuration which should be used to send the email
application/json
TypeScript Definitions
Use the request body type in TypeScript.
email5 <= length <= 100application/json
application/json
application/json
curl -X POST "https://api.eniris.be/v1/auth/forgot-password" \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com" }'application/json
The email address to send the password reset link to
The language which should be used for sending the email
null{
"statusCode": 400,
"error": "Bad Request",
"message": "Missing or misformatted query parameter or body"
}{
"statusCode": 403,
"error": "Forbidden",
"message": "Forbidden email provider"
}{
"statusCode": 429,
"error": "Too many requests",
"message": "Last password forgot call was too recent"
}